Hi everyone, minutes aggregation using Pinot is aw...
# general
v
Hi everyone, minutes aggregation using Pinot is awesome, but is there anyway to perform rolling sum / minute instead?
s
you mean
toDate()
sum? In this case, will you end up getting all rows?
v
This is the sample output im looking at, is UDF the thing that I should be looking into?
s
This is not grouping. It will end up lots of rows. I guess it's not supported.
k
You will have to write a simple udf for this
v
I will look into UDF and custom aggregation function, which seem to be the way it goes, Thanks!
k
👍