Only `sum`, `max`, `min` supported as for today f...
# troubleshooting
a
Only
sum
,
max
,
min
supported as for today for realtimetoofflineSegmentsTask, right?
m
For roll up, yes
a
Will offline table saves more disk space compared to realtime table if mergeType=concat?
m
It will share dictionary, so yes overall size will be less.
But more importantly, it will reduce the number of segments as well.
a
But I need to use percentile function in select query.
m
Sure, you can do that with concat
We should support all other additive functions with roll up though
a
So should I use star tree to pre-aggregate percentile if most select queries will use percentile function?
m
Yes you can do that. But that makes sense with rollup only. Note, you can still do percentile tdigest during query on raw data
a
ok