Example

In this lesson, we'll introduce an example.

The domain structure is identical to the example in the Netflix chapter (chapter 10) (see the drawing below) and consists of three microservices.

  • The catalog microservice manages the information such as price and name for the items that can be ordered.

  • The customer microservice stores customer data.

  • The order microservice can accept new orders. It uses the catalog and customer microservice. ...

A