In KSQL is there a row_number kind of function that can be used in combination with TUMBLING WINDOW in order to group by and only get the event that corresponds to having the least timestamp within the group by thats used.
Asked
Active
Viewed 239 times
1 Answers
0
No, there isn't.
You can use the LATEST_BY_OFFSET
aggregation, this may do what you're after.

Robin Moffatt
- 30,382
- 3
- 65
- 92