Managing Data Lifecycles in Clickhouse
TLDR Alejandro needed help with data management in Clickhouse. Srikanth and vishal-signoz provided links and examples for implementing tag level TTL and data deletion.
May 11, 2023 (4 months ago)
Alejandro
08:36 PMCannot reserve 1.00 MiB, not enough space
how can i drop my data from clickhouse since x days?
May 12, 2023 (4 months ago)
Alejandro
11:28 AMAlejandro
11:29 AMSrikanth
03:35 PMMay 14, 2023 (4 months ago)
Alejandro
05:06 PMMay 15, 2023 (4 months ago)
Srikanth
04:49 AMAlejandro
02:06 PMSrikanth
02:29 PMvishal-signoz
02:36 PMCREATE TABLE events
(
`event` String,
`time` DateTime,
`value` UInt64
)
ENGINE = MergeTree
ORDER BY (event, time)
TTL time + INTERVAL 1 MONTH DELETE WHERE event != 'error',
time + INTERVAL 6 MONTH DELETE WHERE event = 'error'
vishal-signoz
02:36 PMvishal-signoz
02:37 PMSigNoz Community
Indexed 825 threads (61% resolved)
Similar Threads
Services UI Goes Blank Due to Retention Issue with S3 Bucket
oluchi reports issue with services UI going blank after a while. Conversation explores possible reasons, such as S3 connection problems and disk space, but no resolution is reached.


Issues with SigNoz Setup and Data Persistence in AKS
Vaibhavi experienced issues setting up SigNoz in AKS, and faced data persistence issues after installation. Srikanth provided guidance on ClickHouse version compatibility and resource requirements, helping Vaibhavi troubleshoot and resolve the issue.
SigNoz crashing in k8s due to ClickHouse OOM
Travis reported SigNoz crashing in k8s due to ClickHouse OOM. The team suggested increasing resources for ClickHouse, and other troubleshooting steps, but the issue remains unresolved.
Troubleshooting Full Disk Space and Removing Old Data
Romario faced full disk space issue and wanted to remove old data. Ankit guided them through installing ClickHouse client, truncating tables, and using `docker system prune` to clear space.


Dashboard Load Issues and Possible Solutions
Al experiences dashboard loading issues since updating to `0.18.1`. Srikanth believes the issue is not version related and suggests examining queries, memory resources, and server distribution for improvements.
