Microservices Architectures: Event Driven Approach
In this post, we talk about event driven architectures, in the context of microservices architectures.
Join the DZone community and get the full member experience.
Join For FreeIn this article, we talk about event driven architectures, in the context of microservices architectures. We also discuss what are the advantages of using an event driven approach.
You will learn
- What is Event Driven Architecture?
- Why do we need Event Driven Architectures?
- What is the relationship between event driven architectures and microservices?
- What are the advantages of Event Driven Architectures?
Best Practices With Cloud and Microservices
This is the second article in a series of six articles on best practices with cloud and microservices. This first part can be found here: The 12 Factor App: Best Practices in Cloud Native Applications and Microservices.
The Need for Event Driven Architecture
Microservices architectures have multiple small-sized microservices talking to each other. Here is one such architecture:
There are a set of common components — technical as well as infrastructure. Examples of technical components are Security and Logging components. Examples of infrastructure components include Naming Server, API Gateway, and Centralized Logging.
When implementing microservices, you would want to make them as event driven as possible. Why? Let's take an example
Take a Use Case
Consider the use case of an online shopping application. Whenever there is an order, it is received by the order service. There are several actions that need to be carried out in order service:
- Update the stock.
- Send out email and SMS.
- Notify the packaging team.
Monolithic Approach
An initial approach could be to have a single monolith application to take care of all the functionality.
Microservices Approach
Alternatively, these are fairly independent activities, and the entire application can be structured to have microservices for them, in a straightforward manner.
In this approach, you create an order event for the request coming in, and place it in the Queue. The rest of the individual services listen in to the queue for order events, and do the processing subsequently.
How to Choose?
How do we make the decision between these two application architectures?
The nature of your application decides this.
If your system does not have a very high load at any given time, and also does not have any pressing scalability requirements, then you might want go with a monolith approach.
However, when your system is a large, handling millions of requests every day, and also has very stringent scalability requirements, you might be better off with the microservices approach.
An event driven architecture would be the one best suited to your needs.
Advantages of Event Driven Architectures
Improved Flexibility and Maintainability
One of the most important needs of an application is maintainability. Ease of maintainability comes with the proper separation of concerns.
In our example above, the OrderService is only responsible for collecting the order and placing it in the queue. It does not worry about how it is going to be processed, who is going to process it, and so on.
Similarly, the StockService is only responsible for updating the stock, and the same with the other microservices.
If there is a need for an additional processing step on an order, you write a new microservice to listen on the queue, and easily integrate it into the system.
Such an architecture is clearly extensible, and also easily maintainable, due to separation of concerns.
High Scalability
Let's consider an example.
One fine day, a large volume of emails need to be sent out. In that case, you have the freedom to create a large number of instances of the EmailService to handle additional load. A similar thing can be done to the other microservices in the mix, depending on your needs.
This is a clear advantage of this architecture, over using a single component to handle all the functionality.
Improved Availability
Let's say one of the services listening for order events from the queue, such as the PackageService, goes down.
In a monolithic approach, any one functionality going down would mean the application cannot process orders any more.
In the case of an event driven architecture, the PackageService going down would not prevent the OrderService from putting the order event into the Queue. The OrderService can notify the user that their request was received successfully.
A notification request would then be sent to the troubleshooting team about the PackageServer going down, and while it is being restored, the order event remains in the Queue. It can be processed by all the other services during this time, and when PackageService comes back up, it can process the event as if nothing untoward has happened.
Good Reliability
Event driven architectures ensure a good standard of reliability for the system as a whole. However, the individual microservices can function with different levels of reliability. For example the StockService normally needs to ensure a high level of reliability, the EmailService and SMSService a medium level of reliability, and the PackageService — between low and medium levels of reliability.
Good Performance and Responsiveness
Note that in our example event driven architecture, all that the OrderService does is receive the order and place it on the queue, before acknowledging the user. The user does not need to wait till all the steps are performed on an order. This has high high responsiveness, and is seen by the user as high performance.
Summary
In this article, we had a look at event driven architectures. We saw that event driven architecture is ideal for implementing applications with high load and strict scalability needs.
We saw an example of an online shopping application that employs such an architecture. The advantages of using such an architecture include improved flexibility and maintainability, high scalability, imrpoved availability, good reliability, and good performance.
Published at DZone with permission of Ranga Karanam, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments