-
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
[ML] Review and upgrade static node settings and into dynamic cluster settings #33565
Comments
Pinging @elastic/ml-core |
This is something you could look at when you have a spare minute @benwtrent. I think the settings to make dynamic and cluster-wide are:
(If you spot any other good candidates let me know.) In each case, add Line 105 in 8d50c10
Also, because the new settings are going to be dynamic, you need to store the dynamic value in a variable somewhere, and register a callback to update it when the user updates the setting. There's an example here: Line 695 in 8d50c10
|
ML has accumulated some static node settings that make it hard for users to change. These settings require setting the setting to each node and restarting the node. For example,
max.anomaly.records
limits the number of records that our output per bucket to 500 by default. There has been users requesting increasing that limit. We should update that setting to be a dynamic cluster setting and deprecate the old one. At the same time, it would be good to review other similar settings.The text was updated successfully, but these errors were encountered: