You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What you specify there is your window duration. A window duration of 60000 seconds means it will gather messages for 60000 seconds (so, 41 days) and then start processing them. Then it'll gather messages for another 60000 messages.
I would recommend using a lower time window that's suitable for your application and processing flow.
This is my configuration:
StreamingContext streamingContext = new StreamingContext(sparkcontext, Durations.seconds(60000));
But the streaming doesn't seem to be stopping. I keep getting messages and is never able to move ahead
The text was updated successfully, but these errors were encountered: