Is pinot able to do PERCENTILEs and PERCENTILE agg...
# getting-started
t
Is pinot able to do PERCENTILEs and PERCENTILE aggregates in the star tree on columns with NULL values?
j
Currently star-tree does not work with null value index, but it should be possible to skip the null values when creating the pre-aggregation records for star-tree.
Can you please create an issue for this? We should skip the NULL values when creating the star-tree
👍 1
t
@User specifically, do you mean that the NULL values are currently not supported for both the dimension and metric columns when generating the star tree? We have a use case where we have a metric column that occasionally has NaN/NULL values. But we want to compute pre-aggregate PERCENTILE_EST for that column (specified in functionColumnPairs in the star tree config) and have it skip over the null values. Thanks!
Also, if a dimension column has NULL values and I try to generate the star tree with it in dimensionsSplitOrder, what ends up happening?