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
use crate::search::*;
use crate::util::*;

/// A filtering aggregation used to limit any sub aggregations' processing to a sample of the top-scoring documents.
///
/// <https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-sampler-aggregation.html>
#[derive(Debug, Clone, Serialize, PartialEq)]
pub struct SamplerAggregation {
    sampler: SamplerAggregationInner,

    #[serde(skip_serializing_if = "ShouldSkip::should_skip")]
    aggs: Aggregations,
}

#[derive(Debug, Clone, Serialize, PartialEq)]
struct SamplerAggregationInner {
    #[serde(skip_serializing_if = "ShouldSkip::should_skip")]
    shard_size: Option<u64>,
}

impl Aggregation {
    /// Creates an instance of [`SamplerAggregation`]
    pub fn sampler() -> SamplerAggregation {
        SamplerAggregation {
            sampler: SamplerAggregationInner { shard_size: None },
            aggs: Aggregations::new(),
        }
    }
}

impl SamplerAggregation {
    /// The shard_size parameter limits how many top-scoring documents are
    /// collected in the sample processed on each shard. The default value is 100.
    pub fn shard_size(mut self, shard_size: u64) -> Self {
        self.sampler.shard_size = Some(shard_size);
        self
    }

    add_aggregate!();
}

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

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

        assert_serialize_aggregation(
            Aggregation::sampler().shard_size(100),
            json!({ "sampler": { "shard_size": 100 } }),
        );

        assert_serialize_aggregation(
            Aggregation::sampler()
                .shard_size(50)
                .aggregate("catalog", Aggregation::terms("catalog_id"))
                .aggregate("brand", Aggregation::terms("brand_id")),
            json!({
                "sampler": { "shard_size": 50 },
                "aggs": {
                    "catalog": {
                        "terms": {
                            "field": "catalog_id"
                        }
                    },
                    "brand": {
                        "terms": {
                            "field": "brand_id"
                        }
                    }
                }
            }),
        );
    }
}