You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Related: support for percentile ranks, stats, extended_stats, see separate issues
Because percentile output multiple values the transform will output the result as a nested object while the root name is configurable but the inner names are derived from the configuration. For percentiles with decimal places (99.9), the field will replace the . with an _ to not collide with nested objects. Renaming can be done using a ingest pipeline, e.g. to rename my_percentile.50 to my_median.
add percentile support to Transform
Related: support for percentile ranks, stats, extended_stats, see separate issues
Because percentile output multiple values the transform will output the result as a nested object while the root name is configurable but the inner names are derived from the configuration. For percentiles with decimal places (
99.9
), the field will replace the.
with an_
to not collide with nested objects. Renaming can be done using a ingest pipeline, e.g. to renamemy_percentile.50
tomy_median
.example configuration:
example output:
Values are default mapped to
double
.Alternative Histogram
7.6
added ahistogram
datatype. Storing histograms and calculating percentiles on top of it has various advantages.Transform should support the histogram agg and write the result into a histogram data type.
This alternative should be implemented in addition, especially for large cases, storing histograms allows updating without full re-processing.
The text was updated successfully, but these errors were encountered: