-
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
[Transform] add support for extended_stats and string_stats aggregations #51925
Comments
Pinging @elastic/ml-core (:ml/Transform) |
Stats got added in #71850 |
add support for the stats and top metrics aggregation in transform. With this change it became easier to add more multi value aggregations to transform Limitations: - only the 1st element of top_metrics gets consumed by transform[*]. - all values of stats will be mapped to double if mapping deduction is used, including count, sum, min, max fixes #52236 relates #51925
add support for the stats and top metrics aggregation in transform. With this change it became easier to add more multi value aggregations to transform Limitations: - only the 1st element of top_metrics gets consumed by transform[*]. - all values of stats will be mapped to double if mapping deduction is used, including count, sum, min, max fixes #52236 relates #51925
Hello @hendrikmuhs , is this issue still open so I may work on it? Also if it's still open do you suggest opening two PRs for each aggregation or one for both of them? |
@Kiriakos1998 Either way, 1 combined or 2 separate PR's, works. Have a look at #71850 to see how it works, it should be relatively easy to add support for both. The main work is writing good tests. |
Building off of `stats` and multi-value aggregations, including the limitation: - all values of extended_stats will be mapped to `double` if mapping deduction is used Relates elastic#51925
#51808 added the groundwork for multi value aggregations in general and added percentiles support.
More multi value aggregations should be supported:
statsThe text was updated successfully, but these errors were encountered: