-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
KLL sketch #12498
KLL sketch #12498
Changes from 5 commits
390a673
5616648
b36b096
798fc9d
f81d11d
f574353
bb2ad00
1255fdb
a267832
56db1ff
c54128a
7e117c7
cfbbad5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
--- | ||
id: datasketches-kll | ||
title: "DataSketches KLL Sketch module" | ||
--- | ||
|
||
<!-- | ||
~ Licensed to the Apache Software Foundation (ASF) under one | ||
~ or more contributor license agreements. See the NOTICE file | ||
~ distributed with this work for additional information | ||
~ regarding copyright ownership. The ASF licenses this file | ||
~ to you under the Apache License, Version 2.0 (the | ||
~ "License"); you may not use this file except in compliance | ||
~ with the License. You may obtain a copy of the License at | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, | ||
~ software distributed under the License is distributed on an | ||
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
~ KIND, either express or implied. See the License for the | ||
~ specific language governing permissions and limitations | ||
~ under the License. | ||
--> | ||
|
||
|
||
This module provides Apache Druid aggregators based on numeric quantiles KllFloatsSketch and KllDoublesSketch from [Apache DataSketches](https://datasketches.apache.org/) library. KLL quantiles sketch is a mergeable streaming algorithm to estimate the distribution of values, and approximately answer queries about the rank of a value, probability mass function of the distribution (PMF) or histogram, cumulative distribution function (CDF), and quantiles (median, min, max, 95th percentile and such). See [Quantiles Sketch Overview](https://datasketches.apache.org/docs/Quantiles/QuantilesOverview). This document applies to both KllFloatsSketch and KllDoublesSketch. Only one of them will be used in the examples. | ||
|
||
There are three major modes of operation: | ||
|
||
1. Ingesting sketches built outside of Druid (say, with Pig or Hive) | ||
2. Building sketches from raw data during ingestion | ||
3. Building sketches from raw data at query time | ||
|
||
To use this aggregator, make sure you [include](../../development/extensions.md#loading-extensions) the extension in your config file: | ||
|
||
``` | ||
druid.extensions.loadList=["druid-datasketches"] | ||
``` | ||
|
||
### Aggregator | ||
|
||
The result of the aggregation is a KllFloatsSketch or KllDoublesSketch that is the union of all sketches either built from raw data or read from the segments. | ||
|
||
```json | ||
{ | ||
"type" : "KllDoublesSketch", | ||
"name" : <output_name>, | ||
"fieldName" : <metric_name>, | ||
"k": <parameter that controls size and accuracy> | ||
} | ||
``` | ||
|
||
|property|description|required?| | ||
|--------|-----------|---------| | ||
|type|This String should be "KllFloatsSketch" or "KllDoublesSketch"|yes| | ||
|name|A String for the output (result) name of the calculation.|yes| | ||
|fieldName|A String for the name of the input field (can contain sketches or raw numeric values).|yes| | ||
|k|Parameter that determines the accuracy and size of the sketch. Higher k means higher accuracy but more space to store sketches. Must be from 8 to 65535.|no, defaults to 200| | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there a table available of k -> space required and expected accuracy? Would be great to provide some additional guidance to users about this. It's the most common question I get about using sketches in Druid. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am working on adding such a table on our web site, and I will refer to it here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks! |
||
|maxStreamLength|This parameter defines the number of items presented to each sketch before it might, in the context of a BufferAggregator, grow larger than a preallocated memory region and need to move on heap. Ideally just a few sketches should grow that large.|no, defaults to 1000000000| | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Users won't necessarily know what BufferAggregators are, since they're an implementation detail. Suggested alternate wording:
This raises the question in users' minds: why not set it to some huge value like There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK, I like your suggestion to reword. And again we need a table of sketch sizes, which I will provide. |
||
|
||
### Post Aggregators | ||
|
||
#### Quantile | ||
|
||
This returns an approximation to the value that would be preceded by a given fraction of a hypothetical sorted version of the input stream. | ||
|
||
```json | ||
{ | ||
"type" : "KllDoublesSketchToQuantile", | ||
"name": <output name>, | ||
"field" : <post aggregator that refers to a KllDoublesSketch (fieldAccess or another post aggregator)>, | ||
"fraction" : <fractional position in the hypothetical sorted stream, number from 0 to 1 inclusive> | ||
} | ||
``` | ||
|
||
#### Quantiles | ||
|
||
This returns an array of quantiles corresponding to a given array of fractions | ||
|
||
```json | ||
{ | ||
"type" : "KllDoublesSketchToQuantiles", | ||
"name": <output name>, | ||
"field" : <post aggregator that refers to a KllDoublesSketch (fieldAccess or another post aggregator)>, | ||
"fractions" : <array of fractional positions in the hypothetical sorted stream, number from 0 to 1 inclusive> | ||
} | ||
``` | ||
|
||
#### Histogram | ||
|
||
This returns an approximation to the histogram given an array of split points that define the histogram bins or a number of bins (not both). An array of <i>m</i> unique, monotonically increasing split points divide the real number line into <i>m+1</i> consecutive disjoint intervals. The definition of an interval is inclusive of the left split point and exclusive of the right split point. If the number of bins is specified instead of split points, the interval between the minimum and maximum values is divided into the given number of equally-spaced bins. | ||
|
||
```json | ||
{ | ||
"type" : "KllDoublesSketchToHistogram", | ||
"name": <output name>, | ||
"field" : <post aggregator that refers to a KllDoublesSketch (fieldAccess or another post aggregator)>, | ||
"splitPoints" : <array of split points (optional)>, | ||
"numBins" : <number of bins (optional, defaults to 10)> | ||
} | ||
``` | ||
|
||
#### Rank | ||
|
||
This returns an approximation to the rank of a given value that is the fraction of the distribution less than that value. | ||
|
||
```json | ||
{ | ||
"type" : "KllDoublesSketchToRank", | ||
"name": <output name>, | ||
"field" : <post aggregator that refers to a KllDoublesSketch (fieldAccess or another post aggregator)>, | ||
"value" : <value> | ||
} | ||
``` | ||
#### CDF | ||
|
||
This returns an approximation to the Cumulative Distribution Function given an array of split points that define the edges of the bins. An array of <i>m</i> unique, monotonically increasing split points divide the real number line into <i>m+1</i> consecutive disjoint intervals. The definition of an interval is inclusive of the left split point and exclusive of the right split point. The resulting array of fractions can be viewed as ranks of each split point with one additional rank that is always 1. | ||
|
||
```json | ||
{ | ||
"type" : "KllDoublesSketchToCDF", | ||
"name": <output name>, | ||
"field" : <post aggregator that refers to a KllDoublesSketch (fieldAccess or another post aggregator)>, | ||
"splitPoints" : <array of split points> | ||
} | ||
``` | ||
|
||
#### Sketch Summary | ||
|
||
This returns a summary of the sketch that can be used for debugging. This is the result of calling toString() method. | ||
|
||
```json | ||
{ | ||
"type" : "KllDoublesSketchToString", | ||
"name": <output name>, | ||
"field" : <post aggregator that refers to a KllDoublesSketch (fieldAccess or another post aggregator)> | ||
} | ||
``` |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,7 @@ The result of the aggregation is a DoublesSketch that is the union of all sketch | |
|name|A String for the output (result) name of the calculation.|yes| | ||
|fieldName|A String for the name of the input field (can contain sketches or raw numeric values).|yes| | ||
|k|Parameter that determines the accuracy and size of the sketch. Higher k means higher accuracy but more space to store sketches. Must be a power of 2 from 2 to 32768. See [accuracy information](https://datasketches.apache.org/docs/Quantiles/OrigQuantilesSketch) in the DataSketches documentation for details.|no, defaults to 128| | ||
|maxStreamLength|This parameter is a temporary solution to avoid a [known issue](https://github.com/apache/druid/issues/11544). It may be removed in a future release after the bug is fixed. This parameter defines the maximum number of items to store in each sketch. If a sketch reaches the limit, the query can throw `IllegalStateException`. To workaround this issue, increase the maximum stream length. See [accuracy information](https://datasketches.apache.org/docs/Quantiles/OrigQuantilesSketch) in the DataSketches documentation for how many bytes are required per stream length.|no, defaults to 1000000000| | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, good call. Documenting something as a temporary solution is a great way to ensure it sticks around forever 🙂 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, the parameter was introduced to temporarily work around a bug, but after some discussion it was decided that it might be useful regardless |
||
|maxStreamLength|This parameter defines the number of items presented to each sketch before it might, in the context of a BufferAggregator, grow larger than a preallocated memory region and need to move on heap. Ideally just a few sketches should grow that large.|no, defaults to 1000000000| | ||
|
||
### Post Aggregators | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@clintropolis what are your thoughts on the implications of adding float array? Do we need to update any other code?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Float arrays are allowed to exist in the type system, we just didn't have anything producing them so I didn't make a constant for it. The type system even allows nested arrays if
druid.expressions.allowNestedArrays
is true (but it is off by default), so there should be no problem with it. I will ensure thatfloat[]
is handled correctly in the expression system when I make the other adjustments.