Microservices Archive
In the article, we will discuss how to implement a microservice registry with Eureka. The microservice registry is a database of the instances of the microservices. It stores its locations. The instances of the service …
In this article. we will discuss Microservice Discovery Patterns and Registry in the Microservice architecture. We will see how to register and discover services. In the series of Microservice architecture tutorial, we have discussed a …
In this article, we will explore the event sourcing model pattern in event-based inter-service communication in the microservice architecture. This article is part of the previous, microservice inter-service communication. Event Sourcing Event sourcing is the …
In this article, we will discuss event-based inter-service communication in the microservice architecture. This article is part of the previous, microservice inter-service communication. Event-based communication is very similar to messaging. Instead of sending messages, the …
In this article, we’ll have a look at another system Apache Thrift used to provide inter-service communication between microservices. In the previous articles, we have discussed the Google Remote Procedure Calls (gRPC) and REST. Apache …
Google Remote Procedure Calls (gRPC) is an open source Remote Procedure Call (RPC) system used to provide communication between microservices. Google Remote Procedure Calls is based on the HTTP/2 protocol. It also provides various features …
In this article, we will take a look at how the services within a system communicate with one another. We will cover various microservices inter-service communication strategies for either synchronous communication or asynchronous communication. In …