id | title |
---|---|
stats |
Stats aggregator |
This Apache Druid extension includes stat-related aggregators, including variance and standard deviations, etc. Make sure to include druid-stats
in the extensions load list.
Algorithm of the aggregator is the same with that of apache hive. This is the description in GenericUDAFVariance in hive.
Evaluate the variance using the algorithm described by Chan, Golub, and LeVeque in "Algorithms for computing the sample variance: analysis and recommendations" The American Statistician, 37 (1983) pp. 242--247.
variance = variance1 + variance2 + n/(m*(m+n)) * pow(((m/n)*t1 - t2),2)
where:
- variance is sum(x-avg^2) (this is actually n times the variance) and is updated at every step.
- n is the count of elements in chunk1
- m is the count of elements in chunk2
- t1 is the sum of elements in chunk1
- t2 is the sum of elements in chunk2
This algorithm was proven to be numerically stable by J.L. Barlow in "Error analysis of a pairwise summation algorithm to compute sample variance" Numer. Math, 58 (1991) pp. 583--590
:::info As with all aggregators, the order of operations across segments is non-deterministic. This means that if this aggregator operates with an input type of "float" or "double", the result of the aggregation may not be precisely the same across multiple runs of the query.
To produce consistent results, round the variance to a fixed number of decimal places so that the results are precisely the same across query runs. :::
You can use the variance and standard deviation aggregation functions in the SELECT clause of any Druid SQL query.
Function | Notes | Default |
---|---|---|
VAR_POP(expr) |
Computes variance population of expr . |
null or 0 if druid.generic.useDefaultValueForNull=true (deprecated legacy mode) |
VAR_SAMP(expr) |
Computes variance sample of expr . |
null or 0 if druid.generic.useDefaultValueForNull=true (deprecated legacy mode) |
VARIANCE(expr) |
Computes variance sample of expr . |
null or 0 if druid.generic.useDefaultValueForNull=true (deprecated legacy mode) |
STDDEV_POP(expr) |
Computes standard deviation population of expr . |
null or 0 if druid.generic.useDefaultValueForNull=true (deprecated legacy mode) |
STDDEV_SAMP(expr) |
Computes standard deviation sample of expr . |
null or 0 if druid.generic.useDefaultValueForNull=true (deprecated legacy mode) |
STDDEV(expr) |
Computes standard deviation sample of expr . |
null or 0 if druid.generic.useDefaultValueForNull=true (deprecated legacy mode) |
To use this feature, an "variance" aggregator must be included at indexing time. The ingestion aggregator can only apply to numeric values. If you use "variance" then any input rows missing the value will be considered to have a value of 0.
User can specify expected input type as one of "float", "double", "long", "variance" for ingestion, which is by default "float".
{
"type" : "variance",
"name" : <output_name>,
"fieldName" : <metric_name>,
"inputType" : <input_type>,
"estimator" : <string>
}
To query for results, "variance" aggregator with "variance" input type or simply a "varianceFold" aggregator must be included in the query.
{
"type" : "varianceFold",
"name" : <output_name>,
"fieldName" : <metric_name>,
"estimator" : <string>
}
Property | Description | Default |
---|---|---|
estimator |
Set "population" to get variance_pop rather than variance_sample, which is default. | null |
To acquire standard deviation from variance, user can use "stddev" post aggregator.
{
"type": "stddev",
"name": "<output_name>",
"fieldName": "<aggregator_name>",
"estimator": <string>
}
SELECT
DATE_TRUNC('day', __time),
VARIANCE("index_var") AS index_var
FROM "testing"
WHERE TIME_IN_INTERVAL(__time, '2013-03-01/2016-03-20')
GROUP BY 1
{
"queryType": "timeseries",
"dataSource": "testing",
"granularity": "day",
"aggregations": [
{
"type": "variance",
"name": "index_var",
"fieldName": "index_var"
}
],
"intervals": [
"2016-03-01/2013-03-20"
]
}
SELECT
alias,
VARIANCE("index") AS index_var
FROM "testing"
WHERE TIME_IN_INTERVAL(__time, '2016-03-06/2016-03-07')
GROUP BY 1
ORDER BY 2
LIMIT 5
{
"queryType": "topN",
"dataSource": "testing",
"dimensions": ["alias"],
"threshold": 5,
"granularity": "all",
"aggregations": [
{
"type": "variance",
"name": "index_var",
"fieldName": "index"
}
],
"postAggregations": [
{
"type": "stddev",
"name": "index_stddev",
"fieldName": "index_var"
}
],
"intervals": [
"2016-03-06/2016-03-07"
]
}
SELECT
alias,
VARIANCE("index") AS index_var
FROM "testing"
WHERE TIME_IN_INTERVAL(__time, '2016-03-06/2016-03-07')
GROUP BY alias
{
"queryType": "groupBy",
"dataSource": "testing",
"dimensions": ["alias"],
"granularity": "all",
"aggregations": [
{
"type": "variance",
"name": "index_var",
"fieldName": "index"
}
],
"postAggregations": [
{
"type": "stddev",
"name": "index_stddev",
"fieldName": "index_var"
}
],
"intervals": [
"2016-03-06/2016-03-07"
]
}