-
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
Make DLM stats and DLM error store project-aware #124810
Conversation
This is part of the work to make DLM project-aware. These two features were pretty tightly coupled, so I saved some effort by combining them in one PR.
Pinging @elastic/es-data-management (Team:Data Management) |
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
...ams/src/main/java/org/elasticsearch/datastreams/lifecycle/DataStreamLifecycleErrorStore.java
Outdated
Show resolved
Hide resolved
@@ -779,21 +780,22 @@ static List<Index> getTargetIndices( | |||
*/ | |||
private void clearErrorStoreForUnmanagedIndices(DataStream dataStream) { | |||
Metadata metadata = clusterService.state().metadata(); | |||
for (String indexName : errorStore.getAllIndices()) { | |||
final var projectId = metadata.getProject().id(); | |||
for (String indexName : errorStore.getAllIndices(projectId)) { | |||
IndexAbstraction indexAbstraction = metadata.getProject().getIndicesLookup().get(indexName); |
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.
Nit:
IndexAbstraction indexAbstraction = metadata.getProject().getIndicesLookup().get(indexName); | |
IndexAbstraction indexAbstraction = metadata.getProject(projectId).getIndicesLookup().get(indexName); |
to keep deprecation in one place.
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 already have local changes ready to make DataStreamLifecycleService
project aware - overriding these changes. So I'll leave this as is for now.
@FixForMultiProject(description = "Don't use default project ID") | ||
final var projectId = Metadata.DEFAULT_PROJECT_ID; |
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.
Not for this PR. But I wonder whether we could remove Metadata.DEFAULT_PROJECT_ID
and replace it with a deprecated method, e.g.:
@Deprecated(forRemoval=true)
public static ProjectId defaultProjectId() {
return ProjectId.DEFAULT;
}
We can then use the above method in all places where default project id is meant to be a placeholder. And use ProjectId.DEFAULT
for places we actually want the default ID. What do you think?
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 that's a great idea, we should have done that earlier :)
...reams/src/test/java/org/elasticsearch/datastreams/lifecycle/DataStreamLifecycleFixtures.java
Outdated
Show resolved
Hide resolved
This is part of the work to make DLM project-aware. These two features were pretty tightly coupled, so I saved some effort by combining them in one PR.
This is part of the work to make DLM project-aware. These two features were pretty tightly coupled, so I saved some effort by combining them in one PR.
This is part of the work to make DLM project-aware.
These two features were pretty tightly coupled, so I saved some effort by combining them in one PR.