{{ message }}
Replies: 2 comments
|
Hello, did you find any interesting solution ? Do ReplacingMergeTree works well for you ? |
0 replies
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
I have a rather large MergeTree table (68B rows, 265GB footprint) used to archive data. i.e. one large write every day and occasional queries. Works well but (1) on occasion the ingestion scripts gets the hiccups and we end up with useless/harmless duplicate entries, and (2) we waste bandwidth when recreating the _base backup because the table has no partition.
So, I've created a ReplacingMergeTree Partitioned on toYYYYMM(fetched). The resulting table is much larger (> 1.2T).
OPTIMIZE ... PARTITION ... FINAL doesn't reduce the footprint.
So my question is: what is the cause of footprint explosion? Partitioning or ReplaceMergeTree (my guess at this stage is that the "problem" 's root cause is partitioning).
All reactions