DataSketches extension
Apache 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.
当前内容版权归 apache druid 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 apache druid .