Details
-
Improvement
-
Status: Open
-
Normal
-
Resolution: Unresolved
Description
To avoid getting old data in new time windows with DTCS (or related, like TWCS), we need to split out old data into its own sstable during compaction.
My initial idea is to just create two sstables, when we create the compaction task we state the start and end times for the window, and any data older than the window will be put in its own sstable.
By creating a single sstable with old data, we will incrementally get the windows correct - say we have an sstable with these timestamps:
[100, 99, 98, 97, 75, 50, 10]
and we are compacting in window [100, 80] - we would create two sstables:
[100, 99, 98, 97], [75, 50, 10], and the first window is now 'correct'. The next compaction would compact in window [80, 60] and create sstables [75], [50, 10] etc.
We will probably also want to base the windows on the newest data in the sstables so that we actually have older data than the window.
Attachments
Issue Links
- is duplicated by
-
CASSANDRA-10306 Splitting SSTables in time, deleting and archiving SSTables
- Resolved
-
CASSANDRA-8361 Make DTCS split SSTables to perfectly fit time windows
- Resolved
- links to