-
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] Allow indices_options
parameter for datafeed configuration
#48056
Labels
Comments
Pinging @elastic/ml-core (:ml) |
Related issue we're having on the logs/ML integration side: elastic/kibana#48219 |
One particular effect of not being able to configure indices options on the datafeed config is that it's currently impossible to configure a datafeed to search frozen indices because you have to explicitly set the |
benwtrent
added a commit
that referenced
this issue
Feb 27, 2020
This adds a new configurable field called `indices_options`. This allows users to create or update the indices_options used when a datafeed reads from an index. This is necessary for the following use cases: - Reading from frozen indices - Allowing certain indices in multiple index patterns to not exist yet These index options are available on datafeed creation and update. Users may specify them as URL parameters or within the configuration object. closes #48056
benwtrent
added a commit
to benwtrent/elasticsearch
that referenced
this issue
Feb 27, 2020
This adds a new configurable field called `indices_options`. This allows users to create or update the indices_options used when a datafeed reads from an index. This is necessary for the following use cases: - Reading from frozen indices - Allowing certain indices in multiple index patterns to not exist yet These index options are available on datafeed creation and update. Users may specify them as URL parameters or within the configuration object. closes elastic#48056
benwtrent
added a commit
that referenced
this issue
Feb 27, 2020
This adds a new configurable field called `indices_options`. This allows users to create or update the indices_options used when a datafeed reads from an index. This is necessary for the following use cases: - Reading from frozen indices - Allowing certain indices in multiple index patterns to not exist yet These index options are available on datafeed creation and update. Users may specify them as URL parameters or within the configuration object. closes #48056
38 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In certain situations it is valuable to allow missing indices (e.g. a well defined datafeed configuration that takes advantage of ECS). Right now, if one of the indices in the supplied index pattern does not exist, we throw an error on
_start
. If we exposed anindices_options
type of parameter (that serializes to anIndicesOptions
object), that will allow more advanced users to provide custom expansion options to handle their use case.The text was updated successfully, but these errors were encountered: