0

I want to implement active passive setup for multiple microservices in a distributed system. We use hazelcast as the messaging layer between our services. Would like to understand the best way to do this. Can we achieve it using zookeeper or does hazelcast natively support this ?

1 Answers1

0

Hazelcast is distributed by nature. You only need to configure your data structures to be replicated.

Here's how you would configure a single backup for a map:

hazelcast:
  map:
    default:
      backup-count: 1
Nicolas
  • 1,155
  • 6
  • 17