Re: Specifying parallelism on join operation

2019-06-23 Thread Xiaowei Jiang
You can use with(JoinFunction) to workaround it. See JavaDoc for Flink 1.8: @PublicEvolving

Specifying parallelism on join operation

2019-06-21 Thread Roshan Naik
I cant find any place to specify the parallelism for the join here.  stream1.join( stream2 )                      .where( .. )                     .equalTo( .. )                     .window( .. )                     .apply( .. ); How can we specify that ?  -roshan