Incremental backup is doing full backup when multiple parts merge in case of remote backup to s3 #684
-
Hi Team, I have a table with ENGINE = MergeTree() partitioned by month and I want an incremental backup instead of a full backup, do we have support for that? Below is my observation
Can we avoid this full backup otherwise it will end up doing a full backup post every part merge operation. |
Beta Was this translation helpful? Give feedback.
Answered by
Slach
Jun 29, 2023
Replies: 1 comment 2 replies
-
Increment will caclulate on part name level only, |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
Slach
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Increment will caclulate on part name level only,
parts is immutable,
we can't calculate diff between part without full reading, because data parts content compressed, and it is not have a pages like other MySQL\PostgreSQL.