Data rollup

    At ingestion time, you control rollup with the setting in the granularitySpec. Rollup is enabled by default. This means Druid combines into a single row any rows that have identical values and timestamp values after .

    When you disable rollup, Druid loads each row as-is without doing any form of pre-aggregation. This mode is similar to databases that do not support a rollup feature. Set rollup to false if you want Druid to store each record as-is, without any rollup summarization.

    Use roll-up when creating a table datasource if both:

    • You need results for individual rows.

    If you have conflicting needs for different use cases, you can create multiple tables with different roll-up configurations on each table.

    To measure the rollup ratio of a datasource, compare the number of rows in Druid (COUNT) with the number of ingested events. For example, run a Druid SQL query where “num_rows” refers to a count-type metric generated at ingestion time as follows:

    The higher the result, the greater the benefit you gain from rollup. See for more details about how counting works with rollup is enabled.

    • Design your schema with fewer dimensions and lower cardinality dimensions to yield better rollup ratios.
    • Use sketches to avoid storing high cardinality dimensions, which decrease rollup ratios.
    • Adjust your queryGranularity at ingestion time to increase the chances that multiple rows in Druid having matching timestamps. For example, use five minute query granularity () instead of one minute (PT1M).
    • You can optionally load the same data into more than one Druid datasource. For example:
      • Create a “full” datasource that has rollup disabled, or enabled, but with a minimal rollup ratio.
      • Create a second “abbreviated” datasource with fewer dimensions and a higher rollup ratio. When queries only involve dimensions in the “abbreviated” set, use the second datasource to reduce query times. Often, this method only requires a small increase in storage footprint because abbreviated datasources tend to be substantially smaller.

    Depending on the ingestion method, Druid has the following rollup options:

    • Guaranteed perfect rollup: Druid perfectly aggregates input data at ingestion time.
    • Best-effort rollup: Druid may not perfectly aggregate input data. Therefore, multiple segments might contain rows with the same timestamp and dimension values.

    In general, ingestion methods that offer best-effort rollup do this for one of the following reasons:

    • The ingestion method parallelizes ingestion without a shuffling step required for perfect rollup.
    • The ingestion method uses incremental publishing which means it finalizes and publishes segments before all data for a time chunk has been received. In both of these cases, records that could theoretically be rolled up may end up in different segments. All types of streaming ingestion run in this mode.

    Ingestion methods that guarantee perfect rollup use an additional preprocessing step to determine intervals and partitioning before data ingestion. This preprocessing step scans the entire input dataset. While this step increases the time required for ingestion, it provides information necessary for perfect rollup.

    See the following topic for more information: