Elastic Search : Return all records (higher than default 10)
Problem :
You only get 10 results from elastic search query and you suspected that there should be more results return by Elastic Search. How to increase or show all the matching results returned by Elastic Search?
Diagnostic :
From the official Elastic Search documentation - URI search request. By default settings, Elastic Search query will only return 10 rows.
size - The number of hits to return. Defaults to 10.
Solution :
You will need to increase the number of row returned with the size
parameter.
For my own implementation in SocketLoop.com's tag search. I just specify the size
parameter with a very large number. Bigger than my dataset.
This is taken from SocketLoop PHP source code :
// Elastic Search default return size is 10, will just use 9999
$searchquery = '{
"size" : 9999,
"query" : {
"match" : { "tags" : "'.$searchkey.'" }
}
}';
or general example :
http://127.0.0.1:9200/indexname/_search/?size=9999&&q=*:*&pretty=1
See also : PHP : How to parse ElasticSearch JSON ?
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+11k Golang : Find age or leap age from date of birth example
+10.8k Golang : How to determine a prime number?
+13.2k Golang : reCAPTCHA example
+8.2k Python : Fix SyntaxError: Non-ASCII character in file, but no encoding declared
+7.2k Golang : Get YouTube playlist
+21.5k Golang : Join arrays or slices example
+5.7k Fix ERROR 2003 (HY000): Can't connect to MySQL server on 'IP address' (111)
+14.7k Golang : How do I get the local IP (non-loopback) address ?
+11.4k Golang : GTK Input dialog box examples
+24.3k Golang : Generate MD5 checksum of a file
+16.1k Golang : How to implement two-factor authentication?
+23.1k Find and replace a character in a string in Go