-
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
Run TransportExplainLifecycleAction
on local node
#122885
Run TransportExplainLifecycleAction
on local node
#122885
Conversation
This action solely needs the cluster state, it can run on any node. Additionally, it needs to be cancellable to avoid doing unnecessary work after a client failure or timeout. Relates elastic#101805
Pinging @elastic/es-data-management (Team:Data Management) |
Hi @nielsbauman, I've created a changelog YAML for you. |
Related to #120982 |
@@ -24,26 +31,58 @@ | |||
* Multiple indices may be queried in the same request using the | |||
* {@link #indices(String...)} method | |||
*/ | |||
public class ExplainLifecycleRequest extends ClusterInfoRequest<ExplainLifecycleRequest> { | |||
public class ExplainLifecycleRequest extends LocalClusterStateRequest implements IndicesRequest.Replaceable { |
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.
The ClusterInfo
classes feel a bit off; the only value they add are specifying indices
and indicesOptions
, but loads of other actions specify those manually. Therefore, we might as well get rid of the ClusterInfo
abstraction and let every class define by themselves what fields they have.
// If this is requesting only errors, only include indices in the error step or which are using a nonexistent policy | ||
if (onlyErrors == false | ||
|| (ErrorStep.NAME.equals(lifecycleState.step()) || indexLifecycleService.policyExists(policyName) == false)) { | ||
if (onlyErrors == false || (ErrorStep.NAME.equals(lifecycleState.step()) || policyExists == false)) { |
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.
The IndexLifecycleService
only runs on the master node, which meant that policyExists
was always false
. I changed it to use the Metadata
to check for policy existence.
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 this one is missing the ((CancellableTask) task).ensureNotCancelled();
call somewhere, right?
...in/ilm/src/main/java/org/elasticsearch/xpack/ilm/action/TransportExplainLifecycleAction.java
Outdated
Show resolved
Hide resolved
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.
LGTM
This action solely needs the cluster state, it can run on any node. Additionally, it needs to be cancellable to avoid doing unnecessary work after a client failure or timeout. Relates elastic#101805
This action solely needs the cluster state, it can run on any node. Additionally, it needs to be cancellable to avoid doing unnecessary work after a client failure or timeout.
Relates #101805