-
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
Reindex support for TSDB creating indices #86704
Conversation
Pinging @elastic/es-analytics-geo (Team:Analytics) |
This teaches reindex to infer if the destination index is a tsdb index if it doesn't yet exist. It looks at the templates that apply to the index and checks what settings they use. So you should be able to reindex into a non-existant index and automatically get the tsdb support.
Pinging @elastic/clients-team (Team:Clients) |
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
@@ -53,6 +70,16 @@ private ClusterState stateWithIndex(Settings.Builder settings) { | |||
return ClusterState.builder(ClusterState.EMPTY_STATE).metadata(Metadata.builder(Metadata.EMPTY_METADATA).put(meta)).build(); | |||
} | |||
|
|||
private Settings.Builder standardSettings() { | |||
return Settings.builder().put(IndexSettings.MODE.getKey(), IndexMode.STANDARD); |
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.
maybe randomly return an empty setting? Since standard is the default.
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.
👍
public void testMissingIndexWithTsdbTemplateClearsId() throws Exception { | ||
Metadata.Builder metadata = Metadata.builder(); | ||
metadata.put("c", new ComponentTemplate(new Template(tsdbSettings().build(), null, null), null, null)); | ||
metadata.put("c", new ComposableIndexTemplate(List.of("dest_index"), null, List.of("c"), null, null, null)); |
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.
maybe randomly add the settings to component or composable index template?
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.
👍
This teaches reindex to infer if the destination index is a tsdb index
if it doesn't yet exist. It looks at the templates that apply to the
index and checks what settings they use. So you should be able to
reindex into a non-existant index and automatically get the tsdb
support.