use crate::search::*;
use crate::util::*;
#[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 {
pub fn sampler() -> SamplerAggregation {
SamplerAggregation {
sampler: SamplerAggregationInner { shard_size: None },
aggs: Aggregations::new(),
}
}
}
impl SamplerAggregation {
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"
}
}
}
}),
);
}
}