How to connect Zeebe cluster in Java?

Hi
I use spring-zeebe-starter to connect Zeebe cluster.
I don’t know how to set the zeebe.client.broker.contactPoint . Can it be set as Kafka (localhost1:port1,localhost2:port2,localhost3:port3,…) ?

No, it’s a single address. You should use a reverse proxy to load balance across gateways behind that, if you want fault-tolerance.

1 Like

Thank you for your reply.