2019-07-17 08:49:22 -04:00
|
|
|
[[request-body-search-seq-no-primary-term]]
|
2019-07-19 14:35:36 -04:00
|
|
|
==== Sequence Numbers and Primary Term
|
2019-01-23 03:01:58 -05:00
|
|
|
|
|
|
|
Returns the sequence number and primary term of the last modification to each search hit.
|
|
|
|
See <<optimistic-concurrency-control>> for more details.
|
|
|
|
|
2019-09-09 12:35:50 -04:00
|
|
|
[source,console]
|
2019-01-23 03:01:58 -05:00
|
|
|
--------------------------------------------------
|
|
|
|
GET /_search
|
|
|
|
{
|
|
|
|
"seq_no_primary_term": true,
|
|
|
|
"query" : {
|
|
|
|
"term" : { "user" : "kimchy" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|