-
Notifications
You must be signed in to change notification settings - Fork 25k
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
[Transforms] Add support for search-time runtime fields to transforms #65147
Comments
Pinging @elastic/ml-core (:ml/Transform) |
👍 I am concerned by fields in the @nik9000 is this correct? However, we have the situation already and we do not ban certain configuration at the moment, but give a performance warning. The problem is similar to using a In summary the problem applies to 3 cases:
As stated, right now there is no ban, but a warning, I am open for discussing this. However banning rt-fields as group_by in general is in my opinion not required. If you have another non-scripted group_by performance is usually ok. I saw cases with 7 other group_by's and only the 8th was using a script. |
Search-time runtime fields are now supported in Transform. |
Since #64374 Elasticsearch has the option to have search-time runtime fields.
We should allow these to be used in transforms.
We may want to ban certain critical fields in the transform configuration from being runtime fields if having them unindexed will kill performance. (For example, fields that we need to sort on, or do terms searches efficiently on.)
The text was updated successfully, but these errors were encountered: