I have an EventHub stream as input and a Service Bus Queue as output.
My query uses TUMBLINGWINDOW
to aggregate events to output to the queue from the stream.
If I have to pause the Stream Analytics and resume it later from the point it stopped, does this mean that my data windows will be now delayed? Or it will catch up with the events between the last stop date and now in the first window?
E.G. I stop the analytics for an hour and resume from the stopped point, so from now on it will always process new events one hour later.
or
I stop the analytics for an hour and resume from the stopped point, the first output will contain data from one hour ago until now and the new windows will process the new data in real time.