Re: Question on Pattern Matching

2020-07-24 Thread Kostas Kloudas
Hi Basanth, If I understand your usecase correctly: 1) you want to find all A->B->C->D 2) for all of them you want to know how long it took to complete 3) if one completed within X it is considered ok, if not, it is considered problematic 4) you want to count each one of them One way to go is

Re: Question on Pattern Matching

2020-07-23 Thread Basanth Gowda
Yes - I am able to process matched out patterns. Let's suppose I have an order fulfillment process. I want to know how many fulfillments have not met SLA and further how late they are and track until they are fulfilled. >From what I tried with samples, once the pattern timeout, it is discarded

Re: Question on Pattern Matching

2020-07-16 Thread Chesnay Schepler
Have you read this part of the documentation ? From what I understand, it provides you hooks for processing matched/timed out patterns. On 16/07/2020 20:23, Basanth Gowda

Question on Pattern Matching

2020-07-16 Thread Basanth Gowda
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