Orchestrating microservices

后端 未结 7 1083
甜味超标
甜味超标 2020-11-29 14:15

What is the standard pattern of orchestrating microservices?

If a microservice only knows about its own domain, but there is a flow of data that requires that multip

7条回答
  •  囚心锁ツ
    2020-11-29 14:45

    If the State needs to be managed then the Event Sourcing with CQRS is the ideal way of communication. Else, an Asynchronous messaging system (AMQP) can be used for inter microservice communication.

    From your question, it is clear that the ES with CQRS should be the right mix. If using java, take a look at Axon framework. Or build a custom solution using Kafka or RabbitMQ.

提交回复
热议问题