Have you read this part of the documentation
<https://ci.apache.org/projects/flink/flink-docs-release-1.11/dev/libs/cep.html#handling-timed-out-partial-patterns>?
From what I understand, it provides you hooks for processing
matched/timed out patterns.
On 16/07/2020 20:23, Basanth Gowda wrote:
Hello,
We have a use case where we want to know when a certain pattern
doesn't complete within a given time frame.
For Example A -> B -> C -> D (needs to complete in 10 minutes)
Now with Flink if event D doesn't happen in 10 minutes, the pattern is
discarded and we can get notified. We also want to track how many of
them completed (even if they meet SLA). How do we achieve this with
FLINK CEP or other mechanisms?
thank you,
Basanth