mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 04:58:50 +00:00
f5d4550e93
#28245 has introduced the utility class`EngineDiskUtils` with a set of methods to prepare/change translog and lucene commit points. That util class bundled everything that's needed to create and empty shard, bootstrap a shard from a lucene index that was just restored etc. In order to safely do these manipulations, the util methods acquired the IndexWriter's lock. That would sometime fail due to concurrent shard store fetching or other short activities that require the files not to be changed while they read from them. Since there is no way to wait on the index writer lock, the `Store` class has other locks to make sure that once we try to acquire the IW lock, it will succeed. To side step this waiting problem, this PR folds `EngineDiskUtils` into `Store`. Sadly this comes with a price - the store class doesn't and shouldn't know about the translog. As such the logic is slightly less tight and callers have to do the translog manipulations on their own.
253 lines
8.9 KiB
Plaintext
253 lines
8.9 KiB
Plaintext
[[indices-flush]]
|
|
== Flush
|
|
|
|
The flush API allows to flush one or more indices through an API. The
|
|
flush process of an index basically frees memory from the index by
|
|
flushing data to the index storage and clearing the internal
|
|
<<index-modules-translog,transaction log>>. By
|
|
default, Elasticsearch uses memory heuristics in order to automatically
|
|
trigger flush operations as required in order to clear memory.
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
POST twitter/_flush
|
|
--------------------------------------------------
|
|
// CONSOLE
|
|
// TEST[setup:twitter]
|
|
|
|
[float]
|
|
[[flush-parameters]]
|
|
=== Request Parameters
|
|
|
|
The flush API accepts the following request parameters:
|
|
|
|
[horizontal]
|
|
`wait_if_ongoing`:: If set to `true` the flush operation will block until the
|
|
flush can be executed if another flush operation is already executing.
|
|
The default is `false` and will cause an exception to be thrown on
|
|
the shard level if another flush operation is already running.
|
|
|
|
`force`:: Whether a flush should be forced even if it is not necessarily needed ie.
|
|
if no changes will be committed to the index. This is useful if transaction log IDs
|
|
should be incremented even if no uncommitted changes are present.
|
|
(This setting can be considered as internal)
|
|
|
|
[float]
|
|
[[flush-multi-index]]
|
|
=== Multi Index
|
|
|
|
The flush API can be applied to more than one index with a single call,
|
|
or even on `_all` the indices.
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
POST kimchy,elasticsearch/_flush
|
|
|
|
POST _flush
|
|
--------------------------------------------------
|
|
// CONSOLE
|
|
// TEST[s/^/PUT kimchy\nPUT elasticsearch\n/]
|
|
|
|
[[indices-synced-flush]]
|
|
=== Synced Flush
|
|
|
|
Elasticsearch tracks the indexing activity of each shard. Shards that have not
|
|
received any indexing operations for 5 minutes are automatically marked as inactive. This presents
|
|
an opportunity for Elasticsearch to reduce shard resources and also perform
|
|
a special kind of flush, called `synced flush`. A synced flush performs a normal flush, then adds
|
|
a generated unique marker (sync_id) to all shards.
|
|
|
|
Since the sync id marker was added when there were no ongoing indexing operations, it can
|
|
be used as a quick way to check if the two shards' lucene indices are identical. This quick sync id
|
|
comparison (if present) is used during recovery or restarts to skip the first and
|
|
most costly phase of the process. In that case, no segment files need to be copied and
|
|
the transaction log replay phase of the recovery can start immediately. Note that since the sync id
|
|
marker was applied together with a flush, it is very likely that the transaction log will be empty,
|
|
speeding up recoveries even more.
|
|
|
|
This is particularly useful for use cases having lots of indices which are
|
|
never or very rarely updated, such as time based data. This use case typically generates lots of indices whose
|
|
recovery without the synced flush marker would take a long time.
|
|
|
|
To check whether a shard has a marker or not, look for the `commit` section of shard stats returned by
|
|
the <<indices-stats,indices stats>> API:
|
|
|
|
[source,sh]
|
|
--------------------------------------------------
|
|
GET twitter/_stats?filter_path=**.commit&level=shards <1>
|
|
--------------------------------------------------
|
|
// CONSOLE
|
|
// TEST[s/^/PUT twitter\nPOST twitter\/_flush\/synced\n/]
|
|
<1> `filter_path` is used to reduce the verbosity of the response, but is entirely optional
|
|
|
|
|
|
which returns something similar to:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
{
|
|
"indices": {
|
|
"twitter": {
|
|
"shards": {
|
|
"0": [
|
|
{
|
|
"commit" : {
|
|
"id" : "3M3zkw2GHMo2Y4h4/KFKCg==",
|
|
"generation" : 4,
|
|
"user_data" : {
|
|
"translog_uuid" : "hnOG3xFcTDeoI_kvvvOdNA",
|
|
"history_uuid" : "XP7KDJGiS1a2fHYiFL5TXQ",
|
|
"local_checkpoint" : "-1",
|
|
"translog_generation" : "3",
|
|
"max_seq_no" : "-1",
|
|
"sync_id" : "AVvFY-071siAOuFGEO9P", <1>
|
|
"max_unsafe_auto_id_timestamp" : "-1"
|
|
},
|
|
"num_docs" : 0
|
|
}
|
|
}
|
|
],
|
|
"1": ...,
|
|
"2": ...,
|
|
"3": ...,
|
|
"4": ...
|
|
}
|
|
}
|
|
}
|
|
}
|
|
--------------------------------------------------
|
|
// TESTRESPONSE[s/"id" : "3M3zkw2GHMo2Y4h4\/KFKCg=="/"id": $body.indices.twitter.shards.0.0.commit.id/]
|
|
// TESTRESPONSE[s/"translog_uuid" : "hnOG3xFcTDeoI_kvvvOdNA"/"translog_uuid": $body.indices.twitter.shards.0.0.commit.user_data.translog_uuid/]
|
|
// TESTRESPONSE[s/"history_uuid" : "XP7KDJGiS1a2fHYiFL5TXQ"/"history_uuid": $body.indices.twitter.shards.0.0.commit.user_data.history_uuid/]
|
|
// TESTRESPONSE[s/"sync_id" : "AVvFY-071siAOuFGEO9P"/"sync_id": $body.indices.twitter.shards.0.0.commit.user_data.sync_id/]
|
|
// TESTRESPONSE[s/"1": \.\.\./"1": $body.indices.twitter.shards.1/]
|
|
// TESTRESPONSE[s/"2": \.\.\./"2": $body.indices.twitter.shards.2/]
|
|
// TESTRESPONSE[s/"3": \.\.\./"3": $body.indices.twitter.shards.3/]
|
|
// TESTRESPONSE[s/"4": \.\.\./"4": $body.indices.twitter.shards.4/]
|
|
<1> the `sync id` marker
|
|
|
|
[float]
|
|
=== Synced Flush API
|
|
|
|
The Synced Flush API allows an administrator to initiate a synced flush manually. This can be particularly useful for
|
|
a planned (rolling) cluster restart where you can stop indexing and don't want to wait the default 5 minutes for
|
|
idle indices to be sync-flushed automatically.
|
|
|
|
While handy, there are a couple of caveats for this API:
|
|
|
|
1. Synced flush is a best effort operation. Any ongoing indexing operations will cause
|
|
the synced flush to fail on that shard. This means that some shards may be synced flushed while others aren't. See below for more.
|
|
2. The `sync_id` marker is removed as soon as the shard is flushed again. That is because a flush replaces the low level
|
|
lucene commit point where the marker is stored. Uncommitted operations in the transaction log do not remove the marker.
|
|
In practice, one should consider any indexing operation on an index as removing the marker as a flush can be triggered by Elasticsearch
|
|
at any time.
|
|
|
|
|
|
NOTE: It is harmless to request a synced flush while there is ongoing indexing. Shards that are idle will succeed and shards
|
|
that are not will fail. Any shards that succeeded will have faster recovery times.
|
|
|
|
|
|
[source,sh]
|
|
--------------------------------------------------
|
|
POST twitter/_flush/synced
|
|
--------------------------------------------------
|
|
// CONSOLE
|
|
// TEST[setup:twitter]
|
|
|
|
The response contains details about how many shards were successfully sync-flushed and information about any failure.
|
|
|
|
Here is what it looks like when all shards of a two shards and one replica index successfully
|
|
sync-flushed:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
{
|
|
"_shards": {
|
|
"total": 2,
|
|
"successful": 2,
|
|
"failed": 0
|
|
},
|
|
"twitter": {
|
|
"total": 2,
|
|
"successful": 2,
|
|
"failed": 0
|
|
}
|
|
}
|
|
--------------------------------------------------
|
|
// TESTRESPONSE[s/"successful": 2/"successful": 1/]
|
|
|
|
Here is what it looks like when one shard group failed due to pending operations:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
{
|
|
"_shards": {
|
|
"total": 4,
|
|
"successful": 2,
|
|
"failed": 2
|
|
},
|
|
"twitter": {
|
|
"total": 4,
|
|
"successful": 2,
|
|
"failed": 2,
|
|
"failures": [
|
|
{
|
|
"shard": 1,
|
|
"reason": "[2] ongoing operations on primary"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
--------------------------------------------------
|
|
// NOTCONSOLE
|
|
|
|
NOTE: The above error is shown when the synced flush fails due to concurrent indexing operations. The HTTP
|
|
status code in that case will be `409 CONFLICT`.
|
|
|
|
Sometimes the failures are specific to a shard copy. The copies that failed will not be eligible for
|
|
fast recovery but those that succeeded still will be. This case is reported as follows:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
{
|
|
"_shards": {
|
|
"total": 4,
|
|
"successful": 1,
|
|
"failed": 1
|
|
},
|
|
"twitter": {
|
|
"total": 4,
|
|
"successful": 3,
|
|
"failed": 1,
|
|
"failures": [
|
|
{
|
|
"shard": 1,
|
|
"reason": "unexpected error",
|
|
"routing": {
|
|
"state": "STARTED",
|
|
"primary": false,
|
|
"node": "SZNr2J_ORxKTLUCydGX4zA",
|
|
"relocating_node": null,
|
|
"shard": 1,
|
|
"index": "twitter"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
--------------------------------------------------
|
|
// NOTCONSOLE
|
|
|
|
NOTE: When a shard copy fails to sync-flush, the HTTP status code returned will be `409 CONFLICT`.
|
|
|
|
The synced flush API can be applied to more than one index with a single call,
|
|
or even on `_all` the indices.
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
POST kimchy,elasticsearch/_flush/synced
|
|
|
|
POST _flush/synced
|
|
--------------------------------------------------
|
|
// CONSOLE
|