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, each looking after its own area of responsibility. Because each microservice by itself is small, simple, and doesn’t do much, 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 much.

In this chapter, we examine the different ways that microservices can communicate so that these 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.7.6 Sequencing direct messages

 
 
sitemap

Unable to load book!

The book could not be loaded.

(try again in a couple of minutes)

manning.com homepage