Replaced SCAN search type with _doc sort in scroll query

This commit is contained in:
val 2016-04-07 06:52:14 +02:00
parent d1cfe0e7cd
commit e3199824ba
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ import static org.elasticsearch.index.query.QueryBuilders.*;
QueryBuilder qb = termQuery("multi", "test");
SearchResponse scrollResp = client.prepareSearch(test)
.setSearchType(SearchType.SCAN)
.addSort(FieldSortBuilder.DOC_FIELD_NAME, SortOrder.ASC)
.setScroll(new TimeValue(60000))
.setQuery(qb)
.setSize(100).execute().actionGet(); //100 hits per shard will be returned for each scroll