How to make spring boot microservices consistent while using Eureka for service discovery?

122 views Asked by At

The main criteria for choosing service discovery type is CAP theorem. https://www.ibm.com/in-en/cloud/learn/cap-theorem C- Consistency A- Availability P- Partition Tolerance

It says a distributed system can deliver only two of three desired characteristics: consistency, availability, and partition tolerance. One of these characteristics is always traded off.

Eureka gives AP, Consul CA, Zookeeper CP

In my project the developers are using Eureka, how can we make your services consistent?

0

There are 0 answers