This message was deleted.
# general
s
This message was deleted.
โœ… 2
n
Can you can try out the changes suggested by this article https://theorangeone.net/posts/calming-down-clickhouse/
g
This is what I'm trying to do actually. According to your chart https://github.com/SigNoz/charts/blob/main/charts/signoz/values.yaml#L225-L230 :
Copy code
profiles: {}

  # -- Default user profile configuration for Clickhouse. !!! Please DO NOT override this !!!
  defaultProfiles:
    default/allow_experimental_window_functions: "1"
    default/allow_nondeterministic_mutations: "1"
so I added the following to the list:
Copy code
default/log_queries: "0"
and when I restart the pod, I don't see anywhere the changes, so it seems what is changed in the
values.yaml
are not properly applied maybe. I can see this file `/etc/clickhouse-server/users.d/chop-generated-profiles.xml`:
Copy code
yandex>
    <profiles>
        <default>
            <allow_experimental_window_functions>1</allow_experimental_window_functions>
            <allow_nondeterministic_mutations>1</allow_nondeterministic_mutations>
        </default>
    </profiles>
</yandex>
and this `/etc/clickhouse-server/users.d/02-clickhouse-default-profile.xml`:
Copy code
<yandex>
  <profiles>
    <default>
      <log_queries>1</log_queries>
      <connect_timeout_with_failover_ms>1000</connect_timeout_with_failover_ms>
      <distributed_aggregation_memory_efficient>1</distributed_aggregation_memory_efficient>
      <parallel_view_processing>1</parallel_view_processing>
    </default>
  </profiles>
</yandex>
without my settings of
log_queries=0
anywhere ๐Ÿ˜•
Any heads up about this please? [SOLVED]
โœ… 1
n
@Prashant Shahi can you help here?
p
Hello @Guillaume ๐Ÿ‘‹ You can lower the log output of chi pods to
warning
by setting the following configuration in
override-values.yaml
:
Copy code
clickhouse:
  clickhouseOperator:
    logger:
      level: warning
Followed by
helm upgrade
or
helm install
command.
g
Seems to be working this way, thanks!
p
Thatโ€™s great ๐ŸŽ‰