Hi All, Need some suggestion on Flink Modules usin...
# troubleshooting
g
Hi All, Need some suggestion on Flink Modules using Stateful functions. I am trying to create to modularize my app to multiple StatefulFunctionEgressStreams; i.e. breaking the universal DAG to business module level smaller DAGs (StatefulFunctionEgressStreams) and chain them by creating DataStream of ingress messages from the egress stream of predecessor DAG (StatefulFunctionEgressStreams). Though I have assigned a unique uid to each ingress data stream, I still see the below error. `Exception in thread "main" java.lang.IllegalArgumentException: Hash collision on user-specified ID "feedback_union_uid1". Most likely cause is a non-unique ID. Please check that all IDs specified via
uid(String)
are unique.` Wanted to check if its allowed to create multiple StatefulFunctionEgressStreams in a single flink main function and chain them using Datastreams?