Using scan and scroll to find elasticity by meaning

I am trying to loop over several documents in elasticSearch and am using Sense (google chrome plugin for this). Using validation and scrolling for efficiency, I get the scroll id as:

POST _search?scroll=10m&search_type=scan
{
  "query": { "match_all": {}}
}

      

Result:

{
   "_scroll_id": "c2Nhbjs1OzE4ODY6N[...]c5NTU0NTs=",
   "took": 10,
   "timed_out": false,
   "_shards": {
     "total": 5,
     "successful": 5,
     "failed": 0
  },
  "hits": {
     "total": 20000,
     "max_score": 0,
     "hits": []
  }
}

      

Then pass that GET as:

GET _search/scroll?scroll=1m&scroll_id="c2Nhbjs1OzE4ODY6N[...]c5NTU0NTs="

      

but I am getting 0 results, specifically:

{
  "_index": "my_index",
  "_type": "_search",
  "_id": "scroll",
  "found": false
}

      

+3


source to share


2 answers


I found the problem, I indicated the index my_index

in the server field by meaning. Removing this and re-executing the post command:

POST /my_index/_search?scroll=10m&search_type=scan
{
    "query": { "match_all": {}}
}

      

and passing the resulting scroll_id as:



GET _search/scroll?scroll=1m&scroll_id="c2Nhbjs1OzE4ODY6N[...]c5NTU0NTs="

      

works!

+4


source


This works in my sense (of course you should replace id from your case, don't use "

)



POST /test/_search?search_type=scan&scroll=1m
GET /_search/scroll?scroll=1m&scroll_id=c2Nhbjs1OzI[...]Tt0b3RhbF9oaXRzOjQ7

      

+2


source







All Articles