-
Notifications
You must be signed in to change notification settings - Fork 25.2k
[ML] Fix log spam and disable ILM/SLM history for native ML tests #55459
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] Fix log spam and disable ILM/SLM history for native ML tests #55459
Conversation
Pinging @elastic/ml-core (:ml) |
@@ -191,10 +190,6 @@ protected boolean upgradeMode() { | |||
return client().execute(PutFilterAction.INSTANCE, new PutFilterAction.Request(filter)).actionGet(); | |||
} | |||
|
|||
protected GetFiltersAction.Response getMlFilters() { | |||
return client().execute(GetFiltersAction.INSTANCE, new GetFiltersAction.Request()).actionGet(); | |||
} |
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.
Why does this method have to be removed as part of this PR?
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.
It doesn't have to be. But it was unused and I was exploring this class for fixing this problem.
Following the boy scout rule
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
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 adds a dependency to ingest common. This removes the log spam resulting from basic plugins being enabled that require the common ingest processors.
…ts (#55475) * [ML] fix native ML test log spam (#55459) This adds a dependency to ingest common. This removes the log spam resulting from basic plugins being enabled that require the common ingest processors. * removing unnecessary changes * removing unused imports * removing unnecessary java setting
This adds a dependency to ingest common. This removes the log spam resulting from basic plugins being enabled that require the common ingest processors.