Replies: 2 comments 1 reply
-
|
Another option I have been thinking about is if a compaction operation could target a specific partition. That could enable something like "Compact last month's data by compacting partition year(ts)=2026 month(ts)=01" or similar. What do you think? |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
added my comment to #777 |
Beta Was this translation helpful? Give feedback.
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.
-
Currently,
max_compacted_filesinducklake_merge_adjacent_fileslimits the number of compaction operations created per partition group, not globally across all partitions.This means with a partitioned table having 3 partitions with 2 files each:
max_compacted_files => 1will still create up to 3 compaction operations (one per partition)For incremental compaction, it would be useful to compact just 1 file from 1 partition.
I see two possible approaches:
max_compacted_filesapply globally across all partitionsmax_compacted_partitionssetting to control this independentlyHappy to hear your thoughts!
Beta Was this translation helpful? Give feedback.
All reactions