I need to perform aggregation on incoming data based on spark driver timestamp, without watermark. My data doesn't have any timestamp field.
The requirement is: compute an average of the data received every sec (it doesn't matter when they have been send)
for example I need an aggregation on the data received for every trigger, just like the previous RDD streaming API.
is there a way to do that ?