|
AFAIK, this is not on the roadmap.
The problem is that it doesn't get much improvement for over window aggregates. If we support two-phase for over window aggregate, the local over operator doesn't reduce any data, it has to emit the same number of records it received, and can't reduce pressure of the global operator.
Best, Jark Jark, thanks for the reply. Do you know whether it's on the roadmap or what's the plan?
Hi Fanbin,
Currently, over window aggregation doesn't support two-phase optimization.
Best, Jark
Hi, Does over window aggregation support two-phase mode?
SELECT user_id , event_time , listagg(event_type, '*') over w as names FROM table WINDOW w AS ( PARTITION BY user_id ORDER BY event_time ROWS BETWEEN 256 PRECEDING AND CURRENT ROW )
|