Flink Statefun Broadcast state feature

131 views Asked by At

Is there a broadcast state feature available in Flink Statefun, just like Apache Flink (Broadcast State Pattern) ?

1

There are 1 answers

2
David Anderson On

No, there is no built-in support for broadcasting messages; the built-in messaging always involves sending messages to specific addresses.

You can, however, implement a pub-sub model yourself, by having subscribers register their interest with a function that acts as a message broker.