Tag: distributed

Browse 4 practical software engineering resources tagged with "distributed". Discover code recipes, design patterns, documentation templates, and in-depth guides to help you build, deploy, and maintain production-ready solutions involving distributed. Each resource is written for engineers who ship real systems, with copy-paste examples and practical trade-offs.

Distributed Systems

Distributed systems consist of independent components that communicate over a network. They enable scale and resilience.

The resources below cover consensus, replication, messaging, and failure modes. Each guide helps you design and operate distributed systems.

Every resource includes clear explanations, copy-paste code, and practical warnings. Use them to make informed decisions, avoid production pitfalls, and speed up your delivery. If you are just getting started, read the beginner-friendly articles first; if you are experienced, jump straight to the advanced patterns and architecture guides. New resources are added regularly, so bookmark this page and check back for the latest patterns.

Distributed Tracing with OpenTelemetry

How to implement distributed tracing in Python with OpenTelemetry SDK, including spans, context...

Compensating Transaction Pattern

Undo the effects of a completed transaction by executing a counter-operation, enabling eventual...

Saga Pattern

Manage distributed transactions across multiple services by chaining local transactions with...

Database Sharding: Horizontal Partitioning in Practice

A practical guide to database sharding: choosing shard keys, routing queries, rebalancing data, and...