5 Communication between microservices

 

This chapter covers:

  • Using live reload at the application level for faster iterations
  • Sending direct messages between microservices with HTTP requests
  • Sending indirect messages between microservices with RabbitMQ
  • Choosing between using direct and indirect messages

A microservices application is composed of many microservices with each looking after its own area of responsibility. Each microservice by itself is small, simple and doesn’t do much, so our microservices must collaborate to create the complex behaviors needed to implement our application's feature set.

To work together our microservices need ways to communicate. If they can’t talk to each other then they won’t be able to coordinate their activities and they won’t achieve very much.

In this chapter, we examine the different ways that microservices can communicate so that they can collaborate and fulfill the higher level requirements of the application. In the process we’ll also revisit Docker and Docker Compose to set up live reload for our entire application, moving forward that’s essential so that we aren’t constantly rebuilding and restarting our application as we update our code.

5.1       New and familiar tools

 
 
 
 

5.2       Getting the code

 

5.3       Getting our microservices talking

 
 
 

5.4       Introducing the history microservice

 

5.5       Live reload for fast iterations

 
 
 

5.5.1   Creating a stub for the history microservice

 
 

5.5.2   Augmenting the microservice for live reload

 
 

5.5.3   Splitting our Dockerfile for development and production

 
 
 

5.5.4   Updating the Docker Compose file for live reload

 
 
 

5.5.5   Trying out live reload

 
 

5.5.6   Testing production mode in development

 
 

5.5.7   What have we achieved?

 
 

5.6       Methods of communication for microservices

 
 
 
 

5.6.1   Direct messaging

 
 

5.6.2   Indirect messaging

 

5.7       Direct messaging with HTTP

 
 

5.7.1   Why HTTP?

 
 
 
 

5.7.2   Directing microservices with HTTP messages

 
 
 
sitemap

Unable to load book!

The book could not be loaded.

(try again in a couple of minutes)

manning.com homepage