Re: MiniCluster with ProcessingTimeTrigger

2019-12-18 Thread Biao Liu
ctSink.values.clear(); > > List listOfNumbers = IntStream.rangeClosed(1, > inputSize).boxed().collect(Collectors.toList()); > > // 1st half of pipeline > //DataStream> pipeA = env.fromCollection(listOfNumbers) > DataStream> pipeA = env.addSource(new > St

Re: MiniCluster with ProcessingTimeTrigger

2019-12-18 Thread John Morrow
e...) From: Biao Liu Sent: Tuesday 17 December 2019 21:50 To: John Morrow Cc: user Subject: Re: MiniCluster with ProcessingTimeTrigger Hi John, The root cause is the collection source exits too fast. The window would also exit without being triggered. You c

Re: MiniCluster with ProcessingTimeTrigger

2019-12-17 Thread Biao Liu
Hi John, The root cause is the collection source exits too fast. The window would also exit without being triggered. You could verify that by waiting a second before releasing the window. For example, insert a map operator between source and window operator. Blocking a second or more in the "clos