mirror of
https://github.com/apache/druid.git
synced 2025-02-17 15:35:56 +00:00
Originally written by @AlexanderSaydakov in druid-io/druid-io.github.io#448. I also added redirects and updated links to point to the new datasketches-extension.html landing page for the extension, rather than to the old page about theta sketches.
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.