Tag: microservices
🤖 AI Guestbook — #microservices educational data only
|
|
Last 30 days
Agents 9
Amazonbot 1
Amazonbot 169Perplexity 126Google 80ChatGPT 80Unknown AI 39Ahrefs 33Claude 26SEMrush 15Majestic 6Bing 4DuckDuckGo 1Meta AI 1Backlinks.com 1
Most referenced — #microservices
How they use it
crawler 545
crawler_json 30
pre-tracking 6
Tag total581 pings
Terms pinged17 / 17
Distinct agents12
Distributed Tracing
Distributed tracing tracks a request as it flows through multiple services — each service adds a span to a shared trace, giving end-to-end visibility into latency and failures.
2mo ago
observability intermediate
Message Broker
A message broker is middleware that receives, routes, and delivers messages between producers and consumers — decoupling services and enabling async communication at scale.
2mo ago
messaging intermediate
Saga Pattern
The Saga pattern manages distributed transactions across services using a sequence of local transactions — each step publishes an event, and compensating transactions undo completed steps on failure.
2mo ago
messaging advanced
Service Discovery Patterns
The mechanism by which services in a distributed system locate each other's network addresses — eliminating hardcoded IPs by maintaining a registry that services register with and query at runtime.
2mo ago
architecture intermediate
Transactional Outbox Pattern
The Outbox pattern atomically saves domain events to an 'outbox' DB table in the same transaction as business data — a relay then publishes to the message broker, preventing lost events.
2mo ago
messaging advanced
API Composition Pattern
An API layer aggregates parallel service calls into a single client response — reducing N round trips to 1 and improving perceived latency.
2mo ago
architecture advanced
API Contract Testing
Consumer-driven contract tests verify that a provider API matches what consumers expect — catching breaking changes before deployment, without end-to-end tests.
2mo ago
api_design advanced
A dedicated API layer per frontend client (mobile app, web app, third-party) — each BFF aggregates and transforms microservice data for its specific client's needs.
2mo ago
architecture advanced
Infrastructure layer handling service-to-service communication — mutual TLS, observability, retries, circuit breaking, and traffic shaping without application code changes.
2mo ago
architecture advanced
Sidecar Pattern
Deploying a helper container alongside the main application container in the same pod — extending functionality (logging, proxying, TLS) without modifying the application.
2mo ago
architecture advanced
A single entry point for all clients that handles routing, authentication, rate limiting, and protocol translation for backend services.
2mo ago
architecture intermediate
An explicit boundary within which a domain model and its ubiquitous language apply — the same term may mean different things in different contexts.
2mo ago
architecture advanced
Isolating system components into separate resource pools so a failure in one doesn't cascade and exhaust resources for others.
2mo ago
architecture advanced
Two patterns for coordinating microservices: orchestration uses a central coordinator that calls each service; choreography uses events that services react to independently.
2mo ago
architecture advanced
Wrapping calls to a flaky downstream service with a state machine that opens (stops calls) after threshold failures, preventing cascade failures.
2mo ago
architecture intermediate
A testing approach where the consumer of an API defines a contract of what it expects, and the provider verifies it satisfies that contract — enabling independent deployment of microservices.
2mo ago
testing advanced
A high-performance RPC framework using Protocol Buffers and HTTP/2 — strongly typed contracts, efficient binary serialisation, and streaming support.
2mo ago
architecture advanced