Roberto Díaz
08/11/2021, 10:30 PMMayank
window
functions in general? If so, Pinot doesn't have that yet today. But if are talking about rollups on different time granularities that can be done. Could you give an example query of what you are looking for?Roberto Díaz
08/12/2021, 4:59 AMwindow
options in general (tumbling, hopping, sliding or cascading) in the same way that is supported on Calcite SQL https://calcite.apache.org/docs/stream.html#tumbling-windows.
On the other hand, being more specific we want to implement for instance a rolling window where we have a span of time that we move across two different points in time.Mayank
Roberto Díaz
08/12/2021, 5:20 AMMayank
Roberto Díaz
08/12/2021, 5:52 AMsum(amount)
that we are receiving per hour during last 24 hours
In this example we have a span of one hour and we move the window on steps of 1 hour (00am-01am, 01am-02am, … and so on) during the last 24 hours and for each step we compute the sum(amount)
Kishore G
Roberto Díaz
08/12/2021, 6:38 AMKishore G
Kishore G
Sachin Kulkarni
08/12/2021, 5:44 PMKishore G