I noticed the CEP doesn't link to this, so it should be worth mentioning that the UCS documentation is available here: https://github.com/datastax/cassandra/blob/ds-trunk/doc/unified_compaction.md
Both of the above seem to do a poor job referencing the literature we've been inspired by. I will link to Mark Callaghan's blog on the subject: http://smalldatum.blogspot.com/2018/07/tiered-or-leveled-compaction-why-not.html?m=1 ...and lazily will also borrow from Mark a post that references a bunch of LSM (not just UCS related) academic papers: http://smalldatum.blogspot.com/2018/08/name-that-compaction-algorithm.html?m=1 Finally, it's perhaps worth mentioning that UCS has been in production in our Astra Serverless cloud service since it was launched in March 2021. The version described by the CEP therefore already incorporates some improvements based on observed production behaviour. Henrik On Mon, 19 Dec 2022, 15:41 Branimir Lambov, <blam...@apache.org> wrote: > Hello everyone, > > I would like to open the discussion on our proposal for a unified > compaction strategy that aims to solve well-known problems with compaction > and improve parallelism to permit higher levels of sustained write > throughput. > > The proposal is here: > https://cwiki.apache.org/confluence/display/CASSANDRA/CEP-26%3A+Unified+Compaction+Strategy > > The strategy is based on two main observations: > - that tiered and levelled compaction can be generalized as the same thing > if one observes that both form exponentially-growing levels based on the > size of sstables (or non-overlapping sstable runs) and trigger a compaction > when more than a given number of sstables are present on one level; > - that instead of "size" in the description above we can use "density", > i.e. the size of an sstable divided by the width of the token range it > covers, which permits sstables to be split at arbitrary points when the > output of a compaction is written and still produce a levelled hierarchy. > > The latter allows us to shard the compaction space into > progressively higher numbers of shards as data moves to the higher levels > of the hierarchy, improving parallelism, space requirements and the > duration of compactions, and the former allows us to cover the existing > strategies, as well as hybrid mixtures that can prove more efficient for > some workloads. > > Thank you, > Branimir >