Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

hello i am new to elasticsearch is there is any way to get all the search result for an search keyword ..this elastic search is limited to 10 or else we can set the size but we need to get the size??

share|improve this question

2 Answers

Yes, the default number of search results is 10.

You need to set the size parameter on the query.

I don't think you an say "all results", though, there must always be a size limit.

share|improve this answer
yes but i need to get the total size first – raagavan Feb 14 '11 at 10:12
@raagavan: Total size of what? – skaffman Feb 14 '11 at 10:13
@skaffman see if i search an keyword example if it is in 200 document i need to display the 200 results .. – raagavan Feb 14 '11 at 10:24
is there is any way to make field collapase like solr http://blog.jteam.nl/2009/10/20/result-grouping-field-collapsing-with-solr/ – raagavan Feb 14 '11 at 10:43
@raagavan no. but you could look into chield parent stuff: elasticsearch.org/guide/reference/query-dsl/… – Karussell Jun 27 '11 at 21:34
show 1 more comment

If you use the JAVA API you can simple get the total hit number from the SearchResponse

SearchRequestBuilder srb = ..
SearchResponse sr = srb.execute().actionGet();
long totalHits = sr.getHits().getTotalHits();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.