mirror of
https://github.com/apache/druid.git
synced 2025-02-11 04:24:58 +00:00
* HllSketch module * updated license and imports * updated package name * implemented makeAggregateCombiner() * removed json marks * style fix * added module * removed unnecessary import, side effect of package renaming * use TreadLocalRandom * addressing code review points, mostly formatting and comments * javadoc * natural order with nulls * typo * factored out raw input value extraction * singleton * style fix * style fix * use Collections.singletonList instead of Arrays.asList * suppress warning
1.2 KiB
1.2 KiB
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 datasketches aggregators, make sure you include the extension in your config file:
druid.extensions.loadList=["druid-datasketches"]
The following modules are available:
- Theta sketch - approximate distinct counting with set operations (union, intersection and set difference).
- Tuple sketch - extension of Theta sketch to support values associated with distinct keys (arrays of numeric values in this specialized implementation).
- Quantiles sketch - approximate distribution of comparable values to obtain ranks, quantiles and histograms. This is a specialized implementation for numeric values.
- HLL sketch - approximate distinct counting using very compact HLL sketch.