Elasticsearch Scroll Query

{ 
    "scroll":"1m", 
    "scroll_id": "ABCDEF......" 
}

The "1m" (one minute) refers to the query will only available to be called for 1 minute
OR
the query will stay alive for 1 minute whenever it is being called?

You have 1 minute to make the next call for the next n (size) events. Each call extends the timer another minute. The entire process can run hours of course, as long as the calls are at a 1 minute frequency.

Thank for your explanation.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.