mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
fb32a55dd5
A normal flush has the same effect as a synced flush on Elasticsearch 7.6 or later. It's deprecated in 7.6 and will be removed in 8.0. Relates #50776
15 lines
631 B
Plaintext
15 lines
631 B
Plaintext
|
|
[source,console]
|
|
--------------------------------------------------
|
|
POST _flush/synced
|
|
--------------------------------------------------
|
|
// TEST[skip: will fail as synced flush is deprecated]
|
|
|
|
When you perform a synced flush, check the response to make sure there are
|
|
no failures. Synced flush operations that fail due to pending indexing
|
|
operations are listed in the response body, although the request itself
|
|
still returns a 200 OK status. If there are failures, reissue the request.
|
|
|
|
Note that synced flush is deprecated and will be removed in 8.0. A flush
|
|
has the same effect as a synced flush on Elasticsearch 7.6 or later.
|