Update point in time sort parameter (#4239)
Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
This commit is contained in:
parent
3b9ae603de
commit
687148e880
|
@ -94,8 +94,7 @@ GET /_search
|
|||
"keep_alive": "100m"
|
||||
},
|
||||
"sort": [
|
||||
{"@timestamp": {"order": "asc", "format": "strict_date_optional_time_nanos"}},
|
||||
{"_shard_doc": "desc"}
|
||||
{"@timestamp": {"order": "asc"}}
|
||||
],
|
||||
"search_after": [
|
||||
"2021-05-20T05:30:04.832Z"
|
||||
|
|
|
@ -55,7 +55,7 @@ GET /_search
|
|||
"keep_alive": "100m"
|
||||
},
|
||||
"sort": [
|
||||
{"@timestamp": {"order": "asc", "format": "strict_date_optional_time_nanos"}}
|
||||
{"@timestamp": {"order": "asc"}}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
@ -76,7 +76,7 @@ GET /_search
|
|||
"keep_alive": "100m"
|
||||
},
|
||||
"sort": [
|
||||
{"@timestamp": {"order": "asc", "format": "strict_date_optional_time_nanos"}}
|
||||
{"@timestamp": {"order": "asc"}}
|
||||
],
|
||||
"search_after": [
|
||||
"2021-05-20T05:30:04.832Z"
|
||||
|
|
Loading…
Reference in New Issue