Hello Everybody,

I'm currently trying to change the state of a CoFlatMapFunction with the
help of a connected configuration-stream. The code looks something like
this.

streamToBeConfigured.connect(configMessageStream)
.keyBy(new SomeIdKeySelecor(), new ConfigMessageKeySelector)
.flatMap(new FunctionWithConfigurableState())
.addSink(...);

The Stream with the actual functionality is keyedBy an Id but the
ConfigMessages don't contain any Id to key them by. They are just
"key=value"-Strings that should be broadcasted to all instances of the
CoFlatMapFunction() regardless of what Id they are keyed by.

Is there any way to do that?

Best Regards,

Julian

Reply via email to