Performance and Scalability Make your system perform well under load and react well to the change of the load.
Event Sourcing Use an append-only store to record the full series of events that describe actions taken on data in a domain.
Materialized View Generate prepopulated views over the data in one or more data stores when the data isn't ideally formatted for required query operations .
Index Table Create indexes over the fields in data stores that are frequently referenced by queries.
Sharding Divide a data store into a set of horizontal partitions or shards .
Static Content Hosting Deploy static content to a cloud-based storage service that can deliver them directly to the client.
Cache-Aside Load data on demand into a cache from a data store.
Throttling Control the consumption of resources used by an instance of an application, an individual tenant, or an entire service.
Geodes Deploy a collection of backend services into a set of geographical nodes, each of which can service any request for any client in any region.
Resiliency Gracefully handle and recover from failures.
Bulkhead Isolate elements of an application into pools so that if one fails, the others will continue to function.
Circuit Breaker Handle faults that might take a variable amount of time to fix when connecting to a remote service or resource.
Compensating Transaction Undo the work performed by a series of steps, which together define an eventually consistent operation.
Leader Election Coordinate the actions performed by a collection of collaborating task instances in a distributed application by electing one instance as the leader that assumes responsibility for managing the other instances.
Messaging Create a messaging infrastructure that connects the components and services, ideally in a loosely coupled manner to maximize scalability.
Publisher-Subscriber Enable an application to announce events to multiple interested consumers asynchronously, without coupling the senders to the receivers.
Competing Consumers Enable multiple concurrent consumers to process messages received on the same messaging channel.
Pipes and Filters Break down a task that performs complex processing into a series of separate elements that can be reused.
Priority Queue Prioritize requests sent to services so that requests with a higher priority are received and processed more quickly than those with a lower priority.
Queue-Based Load Leveling Use a queue that acts as a buffer between a task and a service that it invokes in order to smooth intermittent heavy loads .
Asynchronous Request-Reply Decouple backend processing from a frontend host, where backend processing needs to be asynchronous, but the frontend still needs a clear response.
Choreography Have each component of the system participate in the decision-making process about the workflow of a business transaction, instead of relying on a central point of control.
Management and Monitoring Expose runtime information that administrators and operators can use to manage and monitor the system. Supporting changing business requirements and customization without requiring the application to be stopped or redeployed.
Health Endpoint Monitoring Implement functional checks in an application that external tools can access through exposed endpoints at regular intervals .
Ambassador Create helper services that send network requests on behalf of a consumer service or application.
Anti-Corruption Layer Implement a façade or adapter layer between a modern application and a legacy system.
Gateway Aggregation Use a gateway to aggregate multiple individual requests into a single request.
Gateway Routing Route requests to multiple services using a single endpoint .
Sidecar Deploy components of an application into a separate process or container to provide isolation and encapsulation.
Strangler Incrementally migrate a legacy system by gradually replacing specific pieces of functionality with new applications and services.
Security Prevent malicious or accidental actions outside of the designed usage, and prevent disclosure or loss of information.
Gatekeeper Protect applications and services by using a dedicated host instance that acts as a broker between clients and the application or service, validates and sanitizes requests , and passes requests and data between them.
Valet Key Use a token or key that provides clients with restricted direct access to a specific resource or service.
Claim Check Split a large message into a claim check and a payload.
Other Patterns Create good designs. Take care of consistency, coherence, maintainability, and reusability.
Backends for Frontends Create separate backend services to be consumed by specific frontend applications or interfaces.
Deployment Stamps Deploy multiple independent copies of application components, including data stores.
Deployment Stamps Backends for Frontends Compute Resource Consolidation Other Patterns Claim Check Valet Key Gatekeeper Federated Identity Security Strangler Sidecar Gateway Routing Gateway Offloading Gateway Aggregation External Configuration Store Anti-Corruption Layer Ambassador Health Endpoint Monitoring Management and Monitoring Choreography Asynchronous Request-Reply Scheduler Agent Supervisor Queue-Based Load Leveling Priority Queue Pipes and Filters Competing Consumers Publisher-Subscriber Messaging Leader Election Compensating Transaction Circuit Breaker Bulkhead Resiliency Geodes Throttling Cache-Aside Static Content Hosting Sharding Index Table Materialized View Event Sourcing Command and Query Responsibility Segregation (CQRS) Performance and Scalability Cloud Design Patterns