Compaction

    There are several cases to consider compaction for segment optimization:

    • With streaming ingestion, data can arrive out of chronological order creating many small segments.
    • If you append data using appendToExisting for ingestion creating suboptimal segments.
    • When you use index_parallel for parallel batch indexing and the parallel ingestion tasks create many small segments.
    • When a misconfigured ingestion task creates oversized segments.

    By default, compaction does not modify the underlying data of the segments. However, there are cases when you may want to modify data during compaction to improve query performance:

    • If, after ingestion, you realize that data for the time interval is sparse, you can use compaction to increase the segment granularity.
    • If you don’t need fine-grained granularity for older data, you can use compaction to change older segments to a coarser query granularity. For example, from minute to hour or hour to day. This reduces the storage space required for older data.
    • You can change the dimension order to improve sorting and reduce segment size.
    • You can remove unused columns in compaction or implement an aggregation metric for older data.
    • You can change segment rollup from dynamic partitioning with best-effort rollup to hash or range partitioning with perfect rollup. For more information on rollup, see perfect vs best-effort rollup.

    Compaction does not improve performance in all situations. For example, if you rewrite your data with each ingestion task, you don’t need to use compaction. See for additional guidance to determine if compaction will help in your environment.

    You can configure the Druid Coordinator to perform automatic compaction, also called auto-compaction, for a datasource. Using its , the Coordinator periodically identifies segments for compaction starting from newest to oldest. When the Coordinator discovers segments that have not been compacted or segments that were compacted with a different or changed spec, it submits compaction tasks for the time interval covering those segments.

    Automatic compaction works in most use cases and should be your first option. To learn more, see Automatic compaction.

    In cases where you require more control over compaction, you can manually submit compaction tasks. For example:

    • Automatic compaction is running into the limit of task slots available to it, so tasks are waiting for previous automatic compaction tasks to complete. Manual compaction can use all available task slots, therefore you can complete compaction more quickly by submitting more concurrent tasks for more intervals.
    • You want to force compaction for a specific time range or you want to compact data out of chronological order.

    See for more about manual compaction tasks.

    During compaction, Druid overwrites the original set of segments with the compacted set. Druid also locks the segments for the time interval being compacted to ensure data consistency. By default, compaction tasks do not modify the underlying data. You can configure the compaction task to change the query granularity or add or remove dimensions in the compaction task. This means that the only changes to query results should be the result of intentional, not automatic, changes.

    You can set dropExisting in ioConfig to “true” in the compaction task to configure Druid to replace all existing segments fully contained by the interval. See the suggestion for reindexing with finer granularity under for an example.

    If an ingestion task needs to write data to a segment for a time interval locked for compaction, by default the ingestion task supersedes the compaction task and the compaction task fails without finishing. For manual compaction tasks, you can adjust the input spec interval to avoid conflicts between ingestion and compaction. For automatic compaction, you can set the skipOffsetFromLatest key to adjust the auto-compaction starting point from the current time to reduce the chance of conflicts between ingestion and compaction. Another option is to set the compaction task to higher priority than the ingestion task. For more information, see Avoid conflicts with ingestion.

    If segments have different segment granularities before compaction but there is some overlap in interval, Druid attempts find start and end of the overlapping interval and uses the closest segment granularity level for the compacted segment.

    For example consider two overlapping segments: segment “A” for the interval 01/01/2021-01/02/2021 with day granularity and segment “B” for the interval 01/01/2021-02/01/2021. Druid attempts to combine and compact the overlapped segments. In this example, the earliest start time for the two segments is 01/01/2020 and the latest end time of the two segments is 02/01/2020. Druid compacts the segments together even though they have different segment granularity. Druid uses month segment granularity for the newly compacted segment even though segment A’s original segment granularity was DAY.

    Query granularity handling

    Unless you modify the query granularity in the , Druid retains the query granularity for the compacted segments. If segments have different query granularities before compaction, Druid chooses the finest level of granularity for the resulting compacted segment. For example if a compaction task combines two segments, one with day query granularity and one with minute query granularity, the resulting segment uses minute query granularity.

    If you configure query granularity in compaction to go from a finer granularity like month to a coarser query granularity like year, then Druid overshadows the original segment with coarser granularity. Because the new segments have a coarser granularity, running a kill task to remove the overshadowed segments for those intervals will cause you to permanently lose the finer granularity data.

    Dimension handling

    Apache Druid supports schema changes. Therefore, dimensions can be different across segments even if they are a part of the same datasource. See . If the input segments have different dimensions, the resulting compacted segment includes all dimensions of the input segments.

    Even when the input segments have the same set of dimensions, the dimension order or the data type of dimensions can be different. The dimensions of recent segments precede that of old segments in terms of data types and the ordering because more recent segments are more likely to have the preferred order and data types.

    If you want to control dimension ordering or ensure specific values for dimension types, you can configure a custom dimensionsSpec in the compaction task spec.

    Druid only rolls up the output segment when rollup is set for all input segments. See for more details. You can check that your segments are rolled up or not by using Segment Metadata Queries.

    To perform a manual compaction, you submit a compaction task. Compaction tasks merge all segments for the defined interval according to the following syntax:

    A compaction task internally generates an index task spec for performing compaction work with some fixed parameters. For example, its inputSource is always the druid input source, and dimensionsSpec and metricsSpec include all dimensions and metrics of the input segments by default.

    Compaction tasks exit without doing anything and issue a failure status code in either of the following cases:

    • If the interval you specify has no data segments loaded

    • If the interval you specify is empty.

    Note that the metadata between input segments and the resulting compacted segments may differ if the metadata among the input segments differs as well. If all input segments have the same metadata, however, the resulting output segment will have the same metadata as all input segments.

    Example compaction task

    The following JSON illustrates a compaction task to compact all segments within the interval 2020-01-01/2021-01-01 and create new segments:

    1. "type": "compact",
    2. "dataSource": "wikipedia",
    3. "ioConfig": {
    4. "type": "compact",
    5. "inputSpec": {
    6. "type": "interval",
    7. "interval": "2020-01-01/2021-01-01"
    8. }
    9. },
    10. "granularitySpec": {
    11. "segmentGranularity": "day",
    12. "queryGranularity": "hour"
    13. }
    14. }

    granularitySpec is an optional field. If you don’t specify granularitySpec, Druid retains the original segment and query granularities when compaction is complete.

    Compaction I/O configuration

    The compaction ioConfig requires specifying inputSpec as follows:

    FieldDescriptionDefaultRequired
    typeTask type. Set the value to .noneYes
    inputSpecSpecification of the target or segments.noneYes
    dropExistingIf true, the task replaces all existing segments fully contained by either of the following:
    - the interval in the interval type inputSpec.
    - the umbrella interval of the segments in the segment type inputSpec.
    If compaction fails, Druid does not change any of the existing segments.
    WARNING: dropExisting in ioConfig is a beta feature.
    falseNo

    Druid supports two supported inputSpec formats:

    Interval inputSpec

    Segments inputSpec

    FieldDescriptionRequired
    typeTask type. Set the value to segments.Yes
    segmentsA list of segment IDs.Yes

    Compaction transform spec

    FieldDescriptionRequired
    filterThe filter conditionally filters input rows during compaction. Only rows that pass the filter will be included in the compacted segments. Any of Druid’s standard can be used. Defaults to ‘null’, which will not filter any row.No

    Compaction granularity spec

    See the following topics for more information: