From 8a85105278abb24b0e789c53d374e643e0a081a1 Mon Sep 17 00:00:00 2001 From: Ethan Cui <22898666+EthanInSeattle@users.noreply.github.com> Date: Sat, 6 Apr 2024 21:57:02 -0700 Subject: [PATCH] Correct content for deployment-stamps.md The description for deployment-stamps in the high-availability section is actually the bulkhead pattern instead of the deployment-stamps pattern. The new changes above are from the deployment stamps pattern in the availability section. --- .../101-high-availability/deployment-stamps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/system-design/content/118-cloud-design-patterns/103-reliability-patterns/101-high-availability/deployment-stamps.md b/src/data/roadmaps/system-design/content/118-cloud-design-patterns/103-reliability-patterns/101-high-availability/deployment-stamps.md index a2233c95c946..e217e2efc350 100644 --- a/src/data/roadmaps/system-design/content/118-cloud-design-patterns/103-reliability-patterns/101-high-availability/deployment-stamps.md +++ b/src/data/roadmaps/system-design/content/118-cloud-design-patterns/103-reliability-patterns/101-high-availability/deployment-stamps.md @@ -1,6 +1,6 @@ # Deployment Stamps -The Bulkhead pattern is a type of application design that is tolerant of failure. In a bulkhead architecture, elements of an application are isolated into pools so that if one fails, the others will continue to function. It's named after the sectioned partitions (bulkheads) of a ship's hull. If the hull of a ship is compromised, only the damaged section fills with water, which prevents the ship from sinking. +The deployment stamp pattern involves provisioning, managing, and monitoring a heterogeneous group of resources to host and operate multiple workloads or tenants. Each individual copy is called a stamp, or sometimes a service unit, scale unit, or cell. In a multi-tenant environment, every stamp or scale unit can serve a predefined number of tenants. Multiple stamps can be deployed to scale the solution almost linearly and serve an increasing number of tenants. This approach can improve the scalability of your solution, allow you to deploy instances across multiple regions, and separate your customer data. To learn more visit the following links: