skip to Main Content

Redis – Is there a way to make repeatedly forever apache beam trigger to only execute after the previous execution is completed?

I am using global window with repeated forever after processing time trigger to process streaming data from pub-sub as below : PCollection<KV<String,SMMessage>> perMSISDNLatestEvents = messages .apply("Apply global window",Window.<SMMessage>into(new GlobalWindows()) .triggering(Repeatedly.forever(AfterProcessingTime.pastFirstElementInPane().plusDelayOf(Duration.standardMinutes(1)))) .discardingFiredPanes()) .apply("Convert into kv of msisdn and SM message", ParDo.of(new…

VIEW QUESTION
Back To Top
Search