DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Please enter at least three characters to search
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Last call! Secure your stack and shape the future! Help dev teams across the globe navigate their software supply chain security challenges.

Modernize your data layer. Learn how to design cloud-native database architectures to meet the evolving demands of AI and GenAI workloads.

Releasing software shouldn't be stressful or risky. Learn how to leverage progressive delivery techniques to ensure safer deployments.

Avoid machine learning mistakes and boost model performance! Discover key ML patterns, anti-patterns, data strategies, and more.

Related

  • How Your Application Architecture Has Evolved
  • Performance Testing of Microservices
  • Achieving Micro-frontend Architecture Using Angular Elements
  • Practical Transaction Handling in Microservice Architecture

Trending

  • How Large Tech Companies Architect Resilient Systems for Millions of Users
  • AI’s Role in Everyday Development
  • Performing and Managing Incremental Backups Using pg_basebackup in PostgreSQL 17
  • Unmasking Entity-Based Data Masking: Best Practices 2025
  1. DZone
  2. Software Design and Architecture
  3. Microservices
  4. Microservice Architecture Best Practices: Messaging Queues

Microservice Architecture Best Practices: Messaging Queues

In this article, we discuss why queues are needed, and how they form the cornerstone of asynchronous communication in microservices architectures.

By 
Ranga Karanam user avatar
Ranga Karanam
DZone Core CORE ·
Jun. 25, 19 · Analysis
Likes (14)
Comment
Save
Tweet
Share
63.1K Views

Join the DZone community and get the full member experience.

Join For Free

In this article, we discuss why queues are needed, and how they form the cornerstone of asynchronous communication in microservices architectures.

What You Will Learn

  • What is a Queue?
  • What is asynchronous communication or asynchronous messaging?
  • What are the advantages of using Queues in microservices architectures?

Best Practices With Cloud and Microservices

This is the fourth article in a series of six articles on best practices with cloud and microservices. The first three parts can be found here: 

  1. The 12 Factor App: Best Practices in Cloud Native Applications and Microservices

  2. Microservices Architectures: Event Driven Approach

  3. Microservices Best Practices: Why Do You Build a Vertical Slice?

Why Asynchronous Messaging?

Why is asynchronous messaging important?

Consider the simple example of an ordering service:

Asynchronous Messaging

A customer places an order through the OrderService. Let's say following steps are involved:

  • It needs to send a request to the StockService.
  • Send communication to the user through the EmailService and SMSService.
  • Call the PackageService to start delivery.

Option 1: Single Component for All Processing

One way to design this application would be to have a single component that accomplishes all this functionality. For example, write a Java class which accepts the order, and does all of the processing itself.

Option 2: Introducing Asynchronous Messaging Using Queues

The other option is to have a queue in-between the receiving OrderService component, and the rest of the components. When the OrderService receives an order, it places the request on the Queue. The rest of the components are independent services, listening on the Queue.

As soon as an order is placed on the queue:

  • The StockService processes the order and updates the database.
  • The EmailService sends out an email to the customer.
  • The SMSService sends out an SMS to the user.
  • The PackageService does the required package processing on the item.

Single Components vs. Queues

If your business goal is to support a few hundreds or thousands of users, then a simple architecture would be a good choice. The first architecture might be all you need.

However, when we talk of a large scale e-commerce web applications, such as Amazon.com, that receive millions of orders in a short time, you need a lot of flexibility. That's when you go for the second approach, of bringing a queue in.

Advantages of Using a Messaging Queue

Let's look at the advantages of using asynchronous communication based on a messaging queue.

A Queue Improves Reliability

Let's say the SMSService is down for a short time.

In Option 1, since the OrderService directly invokes the SMSService on receiving an order, an SMS cannot be sent out. That might mean canceling the order, as all steps are part of a single transaction. Failure of one of the components would lead to cancellation of the customer request, with a need for him to re-initiate the order — at a later point in time.

However, in the second approach, called asynchronous communication, the order request is placed on the queue. When the SMSService comes back up, it will find the order event and process it. It can then send out the SMS messages for all its pending requests.

A Queue Provides Scalability

Suppose, on any given day, that there is a need to send out 100,000 SMS messages. An option with having asynchronous communication is that you can increase the number of instances of the SMSService. This flexibility in the instances of the components improves system scalability.

A Queue Improves Testability

Each of the components/services are loosely tied, and have independent requirements. It is thus much easier to test each one of them, preferably in isolation.

A Queue Improves Maintainability

A queue also improves system maintainability, as the application is divided into smaller services.

A Queue Improves Flexibility

Not only does a queue increase the instances of existing services, it makes the system flexible and able to add more services in the future. All you need to do is add a new service listener to events on the queue and consum them. The new service could be plugged in, with minimum down time.

Popular Message Queues

An extremely popular message queue framework is RabbitMQ.

Different frameworks use different communication protocols, but the concept underlying all of them is the same. At its core, a queue separates the component that generates the event from the services that consume the event.

In general, if you need a system that addresses a very large user base, whose users submit a large number of requests to be processed, go for queue-based systems.

Summary

In this article, we looked at the fact that there are two types of architectures — synchronous and asynchronous. Synchronous systems have the disadvantage that one component being down, causes loss of service to the entire system. Asynchronous systems solve this problem by introducing an intermediary queue to hold events. An architecture based on asynchronous communication using a queue improves testability, scalability, maintainability, and flexibility.

microservice Architecture Web Service

Published at DZone with permission of Ranga Karanam, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • How Your Application Architecture Has Evolved
  • Performance Testing of Microservices
  • Achieving Micro-frontend Architecture Using Angular Elements
  • Practical Transaction Handling in Microservice Architecture

Partner Resources

×

Comments
Oops! Something Went Wrong

The likes didn't load as expected. Please refresh the page and try again.

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends:

Likes
There are no likes...yet! 👀
Be the first to like this post!
It looks like you're not logged in.
Sign in to see who liked this post!