docs/architecture/compaction/compaction-strategies.rst
ScyllaDB implements the following compaction strategies in order to reduce :term:read amplification<Read Amplification>, :term:write amplification<Write Amplification>, and :term:space amplification<Space Amplification>, which causes bottlenecks and poor performance. These strategies include:
Size-tiered compaction strategy (STCS)_ - triggered when the system has enough (four by default) similarly sized SSTables.Leveled compaction strategy (LCS)_ - the system uses small, fixed-size (by default 160 MB) SSTables distributed across different levels.Incremental Compaction Strategy (ICS)_ - shares the same read and write amplification factors as STCS, but it fixes its 2x temporary space amplification issue by breaking huge sstables into SSTable runs, which are comprised of a sorted set of smaller (1 GB by default), non-overlapping SSTables.Time-window compaction strategy (TWCS)_ - designed for time series data.This document covers how to choose a compaction strategy and presents the benefits and disadvantages of each one. If you want more information on compaction in general or on any of these strategies, refer to the :doc:Compaction Overview </kb/compaction>. If you want an explanation of the CQL commands used to create a compaction strategy, refer to :doc:Compaction CQL Reference </cql/compaction> .
Learn more in the Compaction Strategies lesson <https://university.scylladb.com/courses/scylla-operations/lessons/compaction-strategies/>_ on ScyllaDB University
.. _STCS1:
The premise of :term:Size-tiered Compaction Strategy (STCS)<Size-tiered Compaction Strategy> is to merge SSTables of approximately the same size.
This is a popular strategy for LSM workloads. It results in a low and logarithmic (in size of data) number of SSTables, and the same data is copied during compaction a fairly low number of times. Use the table in Which strategy is best_ to determine if this is the right strategy for your needs.
This strategy has the following drawbacks (particularly with writes):
Continuously modifying existing rows results in each row being split across several SSTables, making reads slow, which doesn’t happen in :ref:Leveled compaction <LCS1>.
Obsolete data (overwritten or deleted columns) in a very large SSTable remains, wasting space, for a long time, until it is finally merged. In overwrite-intensive loads for example, the overhead can be as much as 400%, as data will be duplicated 4X within a tier. On the other hand, the output SSTable will be the size of a single input SSTable. As a result, you will need 5X the amount of space (4 input SSTables plus one output SSTable), so 400% over the amount of data currently being stored. The allocated space will have to be checked and evaluated as your data set increases in size.
Compaction requires a lot of temporary space as the new larger SSTable is written before the duplicates are purged. In the worst case up to half the disk space needs to be empty to allow this to happen.
To implement this strategy
Set the parameters for :ref:Size-tiered compaction <size-tiered-compaction-strategy-stcs>.
.. _LCS1:
:term:Leveled Compaction Strategy<Leveled compaction strategy (LCS)> (LCS) uses small, fixed-size (by default 160 MB) SSTables divided into different levels. Each level represents a run of a number of SSTables.
With the leveled compaction strategy, the following benefits are noteworthy:
Use the table in Which strategy is best_ to determine if this is the right strategy for your needs.
The downside of this method is there is two times more I/O on writes, so it is not as good for workloads which focus on writing mostly new data.
Only one compaction operation on the same table can run at a time, so compaction may be postponed if there is a compaction already in progress. As the size of the files is not too large, this is not really an issue.
To implement this strategy
Set the parameters for :ref:Leveled Compaction <leveled-compaction-strategy-lcs>.
.. _ICS1:
ICS principles of operation are similar to those of STCS, merely replacing the increasingly larger SSTables in each tier, by increasingly longer SSTable runs, modeled after LCS runs, but using larger fragment size of 1 GB, by default.
Compaction is triggered when there are two or more runs of roughly the same size. These runs are incrementally compacted with each other, producing a new SSTable run, while incrementally releasing space as soon as each SSTable in the input run is processed and compacted. This method eliminates the high temporary space amplification problem of STCS by limiting the overhead to twice the (constant) fragment size, per shard.
If you look at the following screenshot the green line shows how disk usage behaves under ICS when major compaction is issued.
.. image:: /architecture/compaction/screenshot.png
Namely:
To implement this strategy
Set the parameters for :ref:Incremental Compaction <incremental-compaction-strategy-ics>.
For more information, see the :ref:Compaction KB Article <incremental-compaction-strategy-ics>.
.. _TWCS1:
Time-Window Compaction Strategy compacts SSTables within each time window using Size-tiered Compaction Strategy (STCS)_.
SSTables from different time windows are never compacted together. You set the :ref:TimeWindowCompactionStrategy <time-window-compactionstrategy-twcs> parameters when you create a table using a CQL command.
.. include:: /rst_include/warning-ttl-twcs.rst
To implement this strategy
Set the parameters for :ref:Time-window Compaction <time-window-compactionstrategy-twcs>.
Use the table in Which strategy is best_ to determine if this is the right strategy for your needs.
.. _which-strategy-is-best:
Every workload type may not work well with every compaction strategy. Unfortunately, the more mixed your workload, the harder it is to pick the correct strategy. This table presents what can be expected depending on the strategy you use for the workload indicated, allowing you to make a more informed decision. Keep in mind that the best choice for our testing may not be the best choice for your environment. You may have to experiment to find which strategy works best for you.
.. _CSM1:
The table presents which workload works best with which compaction strategy. In cases where you have the ability to use either STCS or ICS, always choose ICS.
.. list-table:: :widths: 20 15 15 15 15 20 :header-rows: 1
Overwrite (Same data cells overwritten many times)The comments below describe the type of amplification each compaction strategy create on each use case, using the following abbreviations:
.. _1:
:sup:1 When using Size-tiered with write-only loads it will use approximately 2x peak space - :abbr:SA (Size Amplification) with Incremental, the SA is much less
.. _2:
:sup:2 When using Leveled Compaction with write only loads you will experience high Write Amplification - :abbr:WA (Write Amplification)
.. _3:
:sup:3 When using Size-tired or Incremental with Overwrite loads, :abbr:SA (Size Amplification) occurs
.. _4:
:sup:4 When using Leveled Compaction with overwrite loads, :abbr:WA (Write Amplification) occurs
.. _5:
:sup:5 When using Size-tiered with mostly read loads with little updates, :abbr:SA (Size Amplification) and :abbr:RA (Read Amplification) occurs
.. _6:
:sup:6 When using Leveled with mostly read loads with many updates, :abbr:WA (Write Amplification) occurs in excess
.. _7:
:sup:7 When using Size-tiered or Incremental with Time Series workloads, :abbr:SA (Size Amplification), :abbr:RA (Read Amplification), and :abbr:WA (Write Amplification) occurs.
.. _8:
:sup:8 When using Leveled with Time Series workloads, :abbr:SA (Size Amplification) and :abbr:WA (Write Amplification) occurs.
Compaction Overview </kb/compaction> - contains in depth information on all of the strategiesCompaction CQL Reference </cql/compaction> - covers the CQL parameters used for implementing compactionHow to Ruin Performance by Choosing the Wrong Compaction Strategy <https://www.scylladb.com/tech-talk/ruin-performance-choosing-wrong-compaction-strategy-scylla-summit-2017/>_