How to set the query resultset size to infinite

2014-06-20 Thread Nuno Carvalho
Hi all, I just joined the mailing list, so sorry if this topic was discussed before. I would like to set the query size to infinite (or no limit). http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-request-from-size.html This page explains what the parameters do, but

Re: How to set the query resultset size to infinite

2014-06-20 Thread David Pilato
You don't want to do that! If your need is to extract (download) 1 000 000 000 records, you need to use scanscroll API:  http://www.elasticsearch.org/guide/en/elasticsearch/guide/current/scan-scroll.html#scan-scroll --  David Pilato | Technical Advocate | Elasticsearch.com @dadoonet | 

Re: How to set the query resultset size to infinite

2014-06-20 Thread Nuno Carvalho
Right... that makes sense :) I'll give it a try, thank you! Nuno On Friday, 20 June 2014 10:26:07 UTC+1, David Pilato wrote: You don't want to do that! If your need is to extract (download) 1 000 000 000 records, you need to use scanscroll API: