Exploring the World of Container Patterns
Understanding Sidecar and Ambassador Patterns

Search for a command to run...
Series
Understanding Sidecar and Ambassador Patterns

What is Event Driven Architecture (EDA) Imagine a party where different guests are arriving at different times, some are leaving early, and some are staying until the end. In such a situation, you as the host wouldn't want to stand at the door waitin...

What is Rate Limiting? Rate limiting is a technique to control the rate of access to APIs. It enforces a limit on the number of API calls that a client can make within a specific time period. This helps protect the API from excessive usage, whether i...

What is Load balancer? In the context of application auto scaling, a load balancer is used to distribute incoming traffic to multiple instances of an application. As the traffic to the application increases, more instances of the application are auto...

Distributed transactions in microservices refer to transactions that involve multiple microservices, each handling a part of the transaction, and coordination is required to ensure the transaction’s atomicity, consistency, isolation, and durability (...

What is JWT token JWT stands for JSON Web Token. It is a compact, URL-safe means of representing claims between two parties. In the context of a Spring MVC application, JWT tokens are commonly used for authentication and authorization purposes. Here...
