To maintain data consistency in microservices, _________ strategies are often employed.

  • CQRS (Command Query Responsibility Segregation)
  • Event Sourcing
  • Load Balancing
  • Saga
To maintain data consistency in microservices, Saga strategies are often employed. The Saga pattern helps manage distributed transactions by breaking them into a series of smaller, independent steps or compensating transactions. It ensures that the system remains consistent even when multiple microservices are involved in a transaction, and failures occur.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *