Elasticsearch - Advanced Patterns
Given the following Elasticsearch query using a point-in-time ID, what will be the value of pit_id in the search response?
POST /my-index/_search
{
"pit": {
"id": "abc123",
"keep_alive": "2m"
},
"query": { "match_all": {} },
"size": 1
}