-
Star
(254)
You must be signed in to star a gist -
Fork
(35)
You must be signed in to fork a gist
-
-
Save sanchezzzhak/511fd140e8809857f8f1d84ddb937015 to your computer and use it in GitHub Desktop.
SELECT table, | |
formatReadableSize(sum(bytes)) as size, | |
min(min_date) as min_date, | |
max(max_date) as max_date | |
FROM system.parts | |
WHERE active | |
GROUP BY table |
@alexeyantropov do you mind to add some custom queries? Have you finished to code a little exporter?
I've finished and use it in my production environment. But sure I can add some extra queries and metrics. What have you to suggest?
if you have run out of disk space, you should pay attention to the logs.
Use any query above to identify the abnormal amount of data.
Find partition id
select * from system.parts where table = 'trace_log'
manual drop log
ALTER TABLE system.trace_log (DROP PARTITION 202504); -- 202504 value from column partition
After manual cleaning, you can use this manual for disable trace_log and other log metrics
https://kb.altinity.com/altinity-kb-setup-and-maintenance/altinity-kb-system-tables-eat-my-disk/
Hi everyone, I new to Clickhouse. But my use case is also similar. I want to develop a time-series based dashboard in Grafana which shows how all table's size varies in a timely fashion. Does anyone has an idea how to get that done. Like my query just gives the table size for current time. I want table size over a period of time. Can someone please help.
@alexeyantropov do you mind to add some custom queries? Have you finished to code a little exporter?