Cloud Design Patterns Flashcards
Create helper services that send network requests on behalf of a consumer service or application.
Ambassador
Implement a façade or adapter layer between a modern application and a legacy system.
Anti-Corruption Layer
Decouple backend processing from a frontend host, where backend processing needs to be asynchronous, but the frontend still needs a clear response.
Asynchronous Request-Reply
Create separate backend services to be consumed by specific frontend applications or interfaces.
Backends for Frontends
Isolate elements of an application into pools so that if one fails, the others will continue to function.
Bulkhead
Load data on demand into a cache from a data store.
Cache-Aside
Let each service decide when and how a business operation is processed, instead of depending on a central orchestrator.
Choreography
Handle faults that might take a variable amount of time to fix when connecting to a remote service or resource.
Circuit Breaker
Split a large message into a claim check and a payload to avoid overwhelming a message bus.
Claim Check
Undo the work performed by a series of steps, which together define an eventually consistent operation.
Compensating Transaction
Enable multiple concurrent consumers to process messages received on the same messaging channel.
Competing Consumers
Consolidate multiple tasks or operations into a single computational unit.
Compute Resource Consolidation
Segregate operations that read data from operations that update data by using separate interfaces.
Command and Query Responsibility Segregation (CQRS)
Deploy multiple independent copies of application components, including data stores.
Deployment Stamps
Use an append-only store to record the full series of events that describe actions taken on data in a domain.
Event Sourcing
Move configuration information out of the application deployment package to a centralized location.
External Configuration Store
Delegate authentication to an external identity provider.
Federated Identity
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.
Gatekeeper
Use a gateway to aggregate multiple individual requests into a single request.
Gateway Aggregation
Offload shared or specialized service functionality to a gateway proxy.
Gateway Offloading
Route requests to multiple services using a single endpoint.
Gateway Routing
Deploy backend services into a set of geographical nodes, each of which can service any client request in any region.
Geodes
Implement functional checks in an application that external tools can access through exposed endpoints at regular intervals.
Health Endpoint Monitoring
Create indexes over the fields in data stores that are frequently referenced by queries.
Index Table
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.
Leader Election
Generate pre-populated views over the data in one or more data stores when the data isn’t ideally formatted for required query operations.
Materialized View
Break down a task that performs complex processing into a series of separate elements that can be reused.
Pipes and Filters
Prioritize requests sent to services so that requests with a higher priority are received and processed more quickly than those with a lower priority.
Priority Queue
Enable an application to announce events to multiple interested consumers asynchronously, without coupling the senders to the receivers.
Publisher/Subscriber
Use a queue that acts as a buffer between a task and a service that it invokes in order to smooth intermittent heavy loads.
Queue-Based Load Leveling
Enable an application to handle anticipated, temporary failures when it tries to connect to a service or network resource by transparently retrying an operation that’s previously failed.
Retry
Coordinate a set of actions across a distributed set of services and other remote resources.
Scheduler Agent Supervisor
Process a set of related messages in a defined order, without blocking processing of other groups of messages.
Sequential Convoy
Divide a data store into a set of horizontal partitions or shards.
Sharding
Deploy components of an application into a separate process or container to provide isolation and encapsulation.
Sidecar
Deploy static content to a cloud-based storage service that can deliver them directly to the client.
Static Content Hosting
Incrementally migrate a legacy system by gradually replacing specific pieces of functionality with new applications and services.
Strangler
Control the consumption of resources used by an instance of an application, an individual tenant, or an entire service.
Throttling
Use a token or key that provides clients with restricted direct access to a specific resource or service.
Valet Key