Considering I have a simple aggregation with a window defined without any watermark say.
df
.groupBy(window(col("time"), "30 minutes","10 minutes").as("time"))
.aggr ....
Here as our window is 30 minutes
, and a sliding interval of 10 minutes
- Q1. Does that mean that after 10 minutes, it will slide?
- Q2. If so, then isn't it somewhat similar to watermark?