Aggregation + sorting +pagination in elastic search

In elasticsearch, it’s not possible to paginate an aggregation. The query will not give accurate results if size is specified. So, the only way to do sorting and pagination is to give size 0 and return all the documents and then, get the required results by accumulating all the results in a list for further operation.

Leave a Comment