Systems | Development | Analytics | API | Testing

December 2023

Commands, Queries, and Events | Microservices 101

Messages between microservices come in three different flavors: Commands, Queries, and Events. Commands change the state, queries request the state, and events share the state. When designing microservice communication patterns, it is important to understand the role of these messages. Following a clear set of rules can help ensure consistency and clarity within your system of microservices.

Microservices Trends: The Top 4 Trends That Will Shape Microservices Development

Microservices architecture has emerged as a popular approach for developing software applications in recent years. Instead of building monolithic applications, microservices architecture involves breaking down an application into smaller, independent services that can be developed, deployed, and scaled independently. This approach offers a number of benefits, including increased flexibility, better scalability, and improved fault tolerance.

Asynchronous Events | Microservices 101

Asynchronous events are a communication pattern that is used to build robust and scalable systems. These events are often pushed through a messaging platform such as Apache Kafka. Among their benefits are the ability to optimize resource usage, more flexibility for scaling, and new ways to recover from failure without losing data.