mirror of https://github.com/apache/druid.git
858 B
858 B
layout |
---|
doc_page |
DataSketches extension
Druid aggregators based on datasketches library. Sketches are data structures implementing approximate streaming mergeable algorithms. Sketches can be ingested from the outside of Druid or built from raw data at ingestion time. Sketches can be stored in Druid segments as additive metrics.
To use the datasketch aggregators, make sure you include the extension in your config file:
druid.extensions.loadList=["druid-datasketches"]
The following aggregators are available:
- Theta sketch, useful for approximate set counting, and supporting union, intersection, and difference operations.
- Quantiles sketch.
- Tuple sketch.