Microservices Architecture
Everything on SkillVeris tagged Microservices Architecture — collected across the glossary, study notes, blog, and cheat sheets.
4 resources across 1 library
Interview Questions(4)
What is Two-Phase Commit for Distributed Transactions?
Two-phase commit (2PC) is a protocol that lets a coordinator get multiple independent database participants to agree on committing or aborting a single distrib…
What is the Circuit Breaker Pattern?
The circuit breaker pattern wraps a call to a remote dependency with a state machine that stops sending requests to a service once it detects repeated failures…
What is the Bulkhead Pattern?
The bulkhead pattern isolates resources such as thread pools, connection pools, or processes per dependency or workload so that a failure or slowdown in one pa…
What is the Bulkhead Pattern in distributed systems?
The bulkhead pattern isolates resources — thread pools, connection pools, or process instances — into separate partitions per dependency so that one failing or…