I want to skip matched event after first Pattern Match.
How can I use Flink's skip strategy?
I have a simple scenario if downloads > 1000
then give an alert to the user.
In my implementation, After the first match, it continuously gives alert due to increase in a number of downloads after 1000.
How can I skip all alerts after the first match?
I have read the skip strategy docs but an example or implementation will be helpful for me.