The Elasticsearch documentation for version 7.17 states:
The open point in time request and each subsequent search request can return different
id
; thus always use the most recently receivedid
for the next search request.
(Source: Point in time API | Elasticsearch Guide [7.17] | Elastic)
This statement is unclear. When the documentation mentions that subsequent requests can return different PIT id
s, it's not evident whether:
- A new Point in Time (PIT) context has been created, or
- The
id
has changed, but we're still operating within the same PIT context.
Clarification on this point would be helpful for understanding the behavior and proper usage of the Point in Time API.