Hi
using Es 5.4
Is there a way to do a max doc count like min doc count in terms agg?
i want to get back only the first 200 (size : 200) buckets that contain max of 2000 doc count .
what i encountered with is this:
i have a terms aggregation
with size 200
ordered by "desc"
then I have a bucket_selector agg (as the pipeline agg) with the script:
"params._count <= 2000"
what happens is that none of the 200 buckets returned from the terms aggregation has less then 2000 results
when sorting by asc we do get buckets with less then 2000
since ordering by the pipeline agg is impossible i need a way to do the count filtering inside the terms aggregation
what we need can be achieved using composite agg but this is only available in es 6.1 and up
we cannot upgrade our env in the near future
any suggestions ?
