Hi Daniel,
The NOT operation is not yet supported in the CEP library but there is an open
integrating it in the next release of the CEP library.
Please monitor the issue to check the progress on the topic.
Now what you could do until this is done, is that you can specify a pattern that also
accepts the Stop, and then take the matched patterns stream and filter out the ones
that include it.
Could this help you achieve what you want?
Kostas
Hi Flink team,
Any ideas on how to achieve the below outcome:
I have a stream of Strings, with the words Start, Step and Stop. I'm trying to build a pattern for a Start followed by another Start, without a Stop in between.
e.g. this would give an alert due to lines 5 and 8:
Daniel