1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
use crate::util::*;
use crate::{Aggregation, Number};

/// A `boxplot` metrics aggregation that computes boxplot of numeric values extracted from the
/// aggregated documents. These values can be generated from specific numeric or [histogram fields](https://www.elastic.co/guide/en/elasticsearch/reference/current/histogram.html)
/// in the documents.
///
/// The `boxplot` aggregation returns essential information for making a [box plot](https://en.wikipedia.org/wiki/Box_plot):
/// minimum, maximum median, first quartile (25th percentile) and third quartile (75th percentile) values.
///
/// The algorithm used by the `boxplot` metric is called TDigest (introduced by Ted Dunning in
/// [Computing Accurate Quantiles using T-Digests](https://github.com/tdunning/t-digest/blob/master/docs/t-digest-paper/histo.pdf)).
///
/// > Boxplot as other percentile aggregations are also [non-deterministic](https://en.wikipedia.org/wiki/Nondeterministic_algorithm).
/// This means you can get slightly different results using the same data.
///
/// <https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-metrics-boxplot-aggregation.html>
#[derive(Debug, Clone, Serialize, PartialEq)]
pub struct BoxplotAggregation {
    boxplot: BoxplotAggregationInner,
}

#[derive(Debug, Clone, Serialize, PartialEq)]
struct BoxplotAggregationInner {
    field: String,
    #[serde(skip_serializing_if = "ShouldSkip::should_skip")]
    compression: Option<Number>,
    #[serde(skip_serializing_if = "ShouldSkip::should_skip")]
    missing: Option<Number>,
}

impl Aggregation {
    /// Creates an instance of [`BoxplotAggregation`]
    ///
    /// - `field` - field to aggregate
    pub fn boxplot<T>(field: T) -> BoxplotAggregation
    where
        T: ToString,
    {
        BoxplotAggregation {
            boxplot: BoxplotAggregationInner {
                field: field.to_string(),
                compression: None,
                missing: None,
            },
        }
    }
}

impl BoxplotAggregation {
    /// Approximate algorithms must balance memory utilization with estimation accuracy.
    ///
    /// The TDigest algorithm uses a number of "nodes" to approximate percentiles —— the more
    /// nodes available, the higher the accuracy (and large memory footprint) proportional to the
    /// volume of data. The `compression` parameter limits the maximum number of nodes to 20 * `compression`.
    ///
    /// Therefore, by increasing the compression value, you can increase the accuracy of your
    /// percentiles at the cost of more memory. Larger compression values also make the algorithm
    /// slower since the underlying tree data structure grows in size, resulting in more expensive
    /// operations. The default compression value is 100.
    ///
    /// A "node" uses roughly 32 bytes of memory, so under worst-case scenarios (large amount of
    /// data which arrives sorted and in-order) the default settings will produce a TDigest roughly
    /// 64KB in size. In practice data tends to be more random and the TDigest will use less memory.
    pub fn compression<T>(mut self, compression: T) -> Self
    where
        T: Into<Number>,
    {
        self.boxplot.compression = Some(compression.into());
        self
    }

    /// The `missing` parameter defines how documents that are missing a value should be treated.
    /// By default they will be ignored but it is also possible to treat them as if they had a value.
    pub fn missing<T>(mut self, missing: T) -> Self
    where
        T: Into<Number>,
    {
        self.boxplot.missing = Some(missing.into());
        self
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn serialization() {
        assert_serialize_aggregation(
            Aggregation::boxplot("test_field"),
            json!({ "boxplot": { "field": "test_field" } }),
        );

        assert_serialize_aggregation(
            Aggregation::boxplot("test_field")
                .compression(100)
                .missing(10),
            json!({
                "boxplot": {
                    "field": "test_field",
                    "compression": 100,
                    "missing": 10
                }
            }),
        );
    }
}