1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
//! Contains compaction strategies
pub(crate) mod fifo;
pub(crate) mod levelled;
pub(crate) mod major;
pub(crate) mod tiered;
pub(crate) mod worker;
use crate::{levels::Levels, Config};
/// Input for compactor.
///
/// The compaction strategy chooses which segments to compact and how.
/// That information is given to the compactor.
#[derive(Debug, Eq, PartialEq)]
pub struct Input {
    /// Segments to compact
    pub segment_ids: Vec<String>,
    /// Level to put the created segments into
    pub dest_level: u8,
    /// Segment target size
    ///
    /// If a segment compaction reaches the level, a new segment is started.
    /// This results in a sorted "run" of segments
    pub target_size: u64,
}
/// Describes what to do (compact or not)
#[derive(Debug, Eq, PartialEq)]
pub enum Choice {
    /// Just do nothing.
    DoNothing,
    /// Compacts some segments into a new level.
    DoCompact(Input),
    /// Delete segments without doing compaction.
    ///
    /// This may be used by a compaction strategy that wants to delete old data
    /// without having to compact it away, like [`fifo::Strategy`].
    DeleteSegments(Vec<String>),
}
/// Trait for a compaction strategy
///
/// The strategy receives the levels of the LSM-tree as argument
/// and emits a choice on what to do.
#[allow(clippy::module_name_repetitions)]
pub trait CompactionStrategy {
    /// Decides on what to do based on the current state of the LSM-tree's levels
    fn choose(&self, _: &Levels, config: &Config) -> Choice;
}
pub use fifo::Strategy as Fifo;
pub use levelled::Strategy as Levelled;
pub use tiered::Strategy as SizeTiered;