Open stouch opened 1 week ago
I got this in few weeks with default config of jitsu-charts :
For now, as I dont want to manually change config of the chart, I need to sometimes truncate :
TRUNCATE TABLE system.query_log;
TRUNCATE TABLE system.metric_log;
TRUNCATE TABLE system.asynchronous_metric_log;
TRUNCATE TABLE system.trace_log;
This chart only applies minor changes on top of what Bitnami's ClickHouse chart sets by default, and the default subchart provided services' primary purpose is just to provide a minimal working example. They shouldn't be broken or dysfunctional in any way, but their lifecycle won't be managed beyond what Bitnami provides or what's specifically required by Jitsu, as that falls outside the scope of the chart.
Nevertheless, those tables are managed by ClickHouse itself, which by default doesn't clean up anything. It's possible to configure these to either remove rows after some time or disable them all together. Here are some articles that describe how to do that, and some more general information about these tables: https://clickhouse.com/docs/en/operations/system-tables https://kb.altinity.com/altinity-kb-setup-and-maintenance/altinity-kb-system-tables-eat-my-disk/
Whatever configuration changes you want to add can be added to clickhouse.extraOverrides
as a string value.
Thanks! I will try to change this part of conf in the chart
I use jitsu-chart (v1.9.1) and I noticed that all the tables of
xxx_log
of thesystem
database of the clickhouse pod are becoming HUGE .For example:
For now, I must delete there lines manually.
Is there a solution for this ?