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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
use crate::search::*;
use crate::util::*;
use std::convert::TryInto;
#[derive(Debug, Clone, Serialize, PartialEq)]
pub struct DiversifiedSamplerAggregation {
diversified_sampler: DiversifiedSamplerAggregationInner,
#[serde(skip_serializing_if = "ShouldSkip::should_skip")]
aggs: Aggregations,
}
#[derive(Debug, Clone, Serialize, PartialEq, Copy)]
#[serde(rename_all = "snake_case")]
pub enum ExecutionHint {
Map,
BytesHash,
GlobalOrdinals,
}
#[derive(Debug, Clone, Serialize, PartialEq)]
struct DiversifiedSamplerAggregationInner {
field: String,
#[serde(skip_serializing_if = "ShouldSkip::should_skip")]
shard_size: Option<u64>,
#[serde(skip_serializing_if = "ShouldSkip::should_skip")]
max_docs_per_value: Option<u64>,
#[serde(skip_serializing_if = "ShouldSkip::should_skip")]
execution_hint: Option<ExecutionHint>,
}
impl Aggregation {
pub fn diversified_sampler(field: impl Into<String>) -> DiversifiedSamplerAggregation {
DiversifiedSamplerAggregation {
diversified_sampler: DiversifiedSamplerAggregationInner {
field: field.into(),
shard_size: None,
max_docs_per_value: None,
execution_hint: None,
},
aggs: Aggregations::new(),
}
}
}
impl DiversifiedSamplerAggregation {
pub fn shard_size(mut self, shard_size: impl TryInto<u64>) -> Self {
if let Ok(shard_size) = shard_size.try_into() {
self.diversified_sampler.shard_size = Some(shard_size);
}
self
}
pub fn max_docs_per_value(mut self, max_docs_per_value: impl TryInto<u64>) -> Self {
if let Ok(max_docs_per_value) = max_docs_per_value.try_into() {
self.diversified_sampler.max_docs_per_value = Some(max_docs_per_value);
}
self
}
pub fn execution_hint(mut self, execution_hint: ExecutionHint) -> Self {
self.diversified_sampler.execution_hint = Some(execution_hint);
self
}
add_aggregate!();
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn serialization() {
assert_serialize(
Aggregation::diversified_sampler("catalog_id").shard_size(50),
json!({
"diversified_sampler": {
"field": "catalog_id",
"shard_size": 50
}
}),
);
assert_serialize(
Aggregation::diversified_sampler("catalog_id")
.shard_size(50)
.max_docs_per_value(2)
.execution_hint(ExecutionHint::GlobalOrdinals)
.aggregate("catalog", Aggregation::terms("catalog_id"))
.aggregate("brand", Aggregation::terms("brand_id")),
json!({
"diversified_sampler": {
"field": "catalog_id",
"shard_size": 50,
"max_docs_per_value": 2,
"execution_hint": "global_ordinals"
},
"aggs": {
"catalog": {
"terms": {
"field": "catalog_id"
}
},
"brand": {
"terms": {
"field": "brand_id"
}
}
}
}),
);
}
}