home / tag / microservices
Defining Microservice Scope - Integrators and Disintegrators
Defining Microservice Scope - Integrators and Disintegrators
Aug 16, 2024
3 min read
1 charts

Microservice architecture has become a widely adopted approach for building scalable and maintainable systems. However, one of the most complex decisions when implementing this...

architecturemicroservicesddd
Microservice Communication Patterns
Microservice Communication Patterns
Dec 24, 2023
4 min read
5 charts

Microservices can communicate synchronously and asynchronously. These are the main group of communication means for microservices. Lest dig in to unwrap, what does it mean.

architecturemicroservicespattern
Microservices Scaling patterns
Microservices Scaling patterns
Dec 17, 2023
1 min read
2 charts

You want to scale your microservice, when the load exceeds the available resources. Resources can be CPU, RAM, database throughput, workers pool. I will describe two common...

microservicespattern
Domain Driven Design
Domain Driven Design
Dec 13, 2023
2 min read
5 charts

Domain driven design (DDD) is a methodology for designing software with a focus on the domain. DDD is one of the main practices used in the microservices development. I'll cover 3...

architecturedddmicroservices
CAP theorem
CAP theorem
Dec 9, 2023
1 min read
1 charts

CAP abbreviation means: Consistency, Availability and Partitioning tolerance. Theorem states, that distributed data store can have two of three guarantees:

microservicesarchitectureconcurrency
Distributed "Transactions" in Microservices
Distributed "Transactions" in Microservices
Nov 26, 2023
1 min read
4 charts

Transactions in microservices are not possible, because of the distributed nature of microservices. Though you can implement compensation mechanisms to handle failures in multiple...

acidarchitecturepattern
Application decomposition patterns in microservices
Application decomposition patterns in microservices
Nov 12, 2023
1 min read
4 charts

patterns by Sam Newman from the book Microservices 2nd edition

architecturepatternmicroservices