-
Notifications
You must be signed in to change notification settings - Fork 25.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Retry ILM steps that fail due to SnapshotInProgressException #37624
Merged
dakrone
merged 22 commits into
elastic:master
from
dakrone:ilm-retry-after-snapshot-fail
Jan 23, 2019
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
7aeec21
add test for running certain ILM actions during snapshotting
talevy a97d0eb
swap the tests to awaitsfix and test that things succeed
talevy e8c43de
fix getSnapshotState
talevy 273b932
fix checkstyle
talevy d57f589
Merge remote-tracking branch 'upstream/master' into ilm-snapshot-test
talevy d15507a
WIP
dakrone 545a40d
Add RetryDuringSnapshotStep
dakrone af6ad54
Move DeleteStep to use RetryDuringSnapshotStep
dakrone 8cf8852
Move to real SnapshotInProgressException
dakrone b5ff014
Add license header
dakrone ce1f998
Call original listener `onFailure` if it was not a snapshot exception
dakrone cc2b329
Checkstyle line length fixes
dakrone b36c48a
Use RetryDuringSnapshotStep for FreezeStep as well
dakrone cd2bad7
Merge remote-tracking branch 'talevy/ilm-snapshot-test' into ilm-retr…
dakrone 2d5dd8d
Unawaitsfix the tests, fix RetryDuringSnapshotStep
dakrone 2b1746c
Merge remote-tracking branch 'origin/master' into ilm-retry-after-sna…
dakrone f1fb55f
Fix for unfollow steps after master merge
dakrone 9818012
Move CloseFollowerIndexStep to extend RetryDuringSnapshotStep
dakrone 76099b9
Add a test for unfollow while a snapshot is ongoing
dakrone 34f9444
Add some debug logging for the snapshot retry
dakrone f95b290
Rename RetryDuringSnapshotStep -> AsyncRetryDuringSnapshotActionStep
dakrone ffdc5fd
Be paranoid about exceptions being thrown and swallowed on accident
dakrone File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
165 changes: 165 additions & 0 deletions
165
.../java/org/elasticsearch/xpack/core/indexlifecycle/AsyncRetryDuringSnapshotActionStep.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
package org.elasticsearch.xpack.core.indexlifecycle; | ||
|
||
import org.apache.logging.log4j.LogManager; | ||
import org.apache.logging.log4j.Logger; | ||
import org.elasticsearch.client.Client; | ||
import org.elasticsearch.cluster.ClusterState; | ||
import org.elasticsearch.cluster.ClusterStateObserver; | ||
import org.elasticsearch.cluster.SnapshotsInProgress; | ||
import org.elasticsearch.cluster.metadata.IndexMetaData; | ||
import org.elasticsearch.common.unit.TimeValue; | ||
import org.elasticsearch.index.Index; | ||
import org.elasticsearch.repositories.IndexId; | ||
import org.elasticsearch.snapshots.SnapshotInProgressException; | ||
|
||
import java.util.function.Consumer; | ||
|
||
/** | ||
* This is an abstract AsyncActionStep that wraps the performed action listener, checking to see | ||
* if the action fails due to a snapshot being in progress. If a snapshot is in progress, it | ||
* registers an observer and waits to try again when a snapshot is no longer running. | ||
*/ | ||
public abstract class AsyncRetryDuringSnapshotActionStep extends AsyncActionStep { | ||
private final Logger logger = LogManager.getLogger(AsyncRetryDuringSnapshotActionStep.class); | ||
|
||
public AsyncRetryDuringSnapshotActionStep(StepKey key, StepKey nextStepKey, Client client) { | ||
super(key, nextStepKey, client); | ||
} | ||
|
||
@Override | ||
public void performAction(IndexMetaData indexMetaData, ClusterState currentClusterState, | ||
ClusterStateObserver observer, Listener listener) { | ||
// Wrap the original listener to handle exceptions caused by ongoing snapshots | ||
SnapshotExceptionListener snapshotExceptionListener = new SnapshotExceptionListener(indexMetaData.getIndex(), listener, observer); | ||
performDuringNoSnapshot(indexMetaData, currentClusterState, snapshotExceptionListener); | ||
} | ||
|
||
/** | ||
* Method to be performed during which no snapshots for the index are already underway. | ||
*/ | ||
abstract void performDuringNoSnapshot(IndexMetaData indexMetaData, ClusterState currentClusterState, Listener listener); | ||
|
||
/** | ||
* SnapshotExceptionListener is an injected listener wrapper that checks to see if a particular | ||
* action failed due to a {@code SnapshotInProgressException}. If it did, then it registers a | ||
* ClusterStateObserver listener waiting for the next time the snapshot is not running, | ||
* re-running the step's {@link #performAction(IndexMetaData, ClusterState, ClusterStateObserver, Listener)} | ||
* method when the snapshot is no longer running. | ||
*/ | ||
class SnapshotExceptionListener implements AsyncActionStep.Listener { | ||
private final Index index; | ||
private final Listener originalListener; | ||
private final ClusterStateObserver observer; | ||
|
||
SnapshotExceptionListener(Index index, Listener originalListener, ClusterStateObserver observer) { | ||
this.index = index; | ||
this.originalListener = originalListener; | ||
this.observer = observer; | ||
} | ||
|
||
@Override | ||
public void onResponse(boolean complete) { | ||
originalListener.onResponse(complete); | ||
} | ||
|
||
@Override | ||
public void onFailure(Exception e) { | ||
if (e instanceof SnapshotInProgressException) { | ||
try { | ||
logger.debug("[{}] attempted to run ILM step but a snapshot is in progress, step will retry at a later time", | ||
index.getName()); | ||
observer.waitForNextChange( | ||
new NoSnapshotRunningListener(observer, index.getName(), state -> { | ||
IndexMetaData idxMeta = state.metaData().index(index); | ||
if (idxMeta == null) { | ||
// The index has since been deleted, mission accomplished! | ||
originalListener.onResponse(true); | ||
} | ||
// Re-invoke the performAction method with the new state | ||
performAction(idxMeta, state, observer, originalListener); | ||
}, originalListener::onFailure), | ||
// TODO: what is a good timeout value for no new state received during this time? | ||
TimeValue.timeValueHours(12)); | ||
} catch (Exception secondError) { | ||
// There was a second error trying to set up an observer, | ||
// fail the original listener | ||
secondError.addSuppressed(e); | ||
originalListener.onFailure(secondError); | ||
} | ||
} else { | ||
originalListener.onFailure(e); | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* A {@link ClusterStateObserver.Listener} that invokes the given function with the new state, | ||
* once no snapshots are running. If a snapshot is still running it registers a new listener | ||
* and tries again. Passes any exceptions to the original exception listener if they occur. | ||
*/ | ||
class NoSnapshotRunningListener implements ClusterStateObserver.Listener { | ||
|
||
private final Consumer<ClusterState> reRun; | ||
private final Consumer<Exception> exceptionConsumer; | ||
private final ClusterStateObserver observer; | ||
private final String indexName; | ||
|
||
NoSnapshotRunningListener(ClusterStateObserver observer, String indexName, | ||
Consumer<ClusterState> reRun, | ||
Consumer<Exception> exceptionConsumer) { | ||
this.observer = observer; | ||
this.reRun = reRun; | ||
this.exceptionConsumer = exceptionConsumer; | ||
this.indexName = indexName; | ||
} | ||
|
||
@Override | ||
public void onNewClusterState(ClusterState state) { | ||
try { | ||
if (snapshotInProgress(state)) { | ||
observer.waitForNextChange(this); | ||
} else { | ||
logger.debug("[{}] retrying ILM step after snapshot has completed", indexName); | ||
reRun.accept(state); | ||
} | ||
} catch (Exception e) { | ||
exceptionConsumer.accept(e); | ||
} | ||
} | ||
|
||
private boolean snapshotInProgress(ClusterState state) { | ||
SnapshotsInProgress snapshotsInProgress = state.custom(SnapshotsInProgress.TYPE); | ||
if (snapshotsInProgress == null || snapshotsInProgress.entries().isEmpty()) { | ||
// No snapshots are running, new state is acceptable to proceed | ||
return false; | ||
} | ||
|
||
for (SnapshotsInProgress.Entry snapshot : snapshotsInProgress.entries()) { | ||
if (snapshot.indices().stream() | ||
.map(IndexId::getName) | ||
.anyMatch(name -> name.equals(indexName))) { | ||
// There is a snapshot running with this index name | ||
return true; | ||
} | ||
} | ||
// There are snapshots, but none for this index, so it's okay to proceed with this state | ||
return false; | ||
} | ||
|
||
@Override | ||
public void onClusterServiceClose() { | ||
// This means the cluster is being shut down, so nothing to do here | ||
} | ||
|
||
@Override | ||
public void onTimeout(TimeValue timeout) { | ||
exceptionConsumer.accept(new IllegalStateException("step timed out while waiting for snapshots to complete")); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think waiting 12 hours for a snapshot to finish is reasonable. If there is no progress on this action in that time interval, a user may want to know. so 👍