October 2019
Beginner
186 pages
5h 39m
English
The search query can be modified to return only a specific set of indices or a number of hits using the from and size parameters in the expression, as shown in the following code:
GET /_search{ "from" : 0, "size" : 10, "query": { "term": { "user": "cactus_flower" } }}
The from size and the overall size cannot be greater than the index.max_result_window index setting (which defaults to 10,000).
Read now
Unlock full access