fix(langfuse): increase ClickHouse memory 5Gi → 8Gi #202
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "plane/HOMELAB-1052-clickhouse-memory"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What
Increase ClickHouse memory limit from 5Gi to 8Gi to fix dashboard query OOMs.
Why
Langfuse dashboard queries (
traces FINAL LEFT JOIN observation_stats) materialize ~4.5 GiB intermediate results during the GROUP BY + JOIN. This exceeds the 5Gi container limit. The OPTIMIZE TABLE compaction reduced fragmentation but the query still needs more headroom.Verified
Refs: HOMELAB-1052