You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 14, 2024. It is now read-only.
Sentry's saas offering is a multi-region deployment of Sentry that is built from the same source code as self-hosted and single-tenant deployments.
33
33
@@ -50,6 +50,7 @@ In addition to the goals we had several constraints:
50
50
- A single Sentry Organization has all of their data located within a single Storage Region. This requirement comes from the need to do cross-project operations in Business plans.
51
51
- The solution should support ~1000 regions. While these values are larger than we are likely to use it serves as a useful stress test for the solution.
52
52
53
+
53
54
### Silo Modes
54
55
55
56
In order to offer customers data residency we needed to co-locate the bulk of an organization’s data together. The data our customers collect and send to Sentry needs to be located within the customer’s chosen region. While customer events need to be stored in the preferred region, there is also data in Sentry that is shared between organizations, and thus between regions. This data needs to be centrally stored outside of any region.
@@ -60,14 +61,19 @@ These constraints led our design to having multiple 'silo modes'.
60
61
☝ The term ‘silo’ was chosen as other applicable terms (region, zone, partition, cluster) are all taken.
61
62
</Alert>
62
63
63
-
Our architecture includes two silo modes:
64
+
Our architecture includes two silo modes:
64
65
65
66
1.**Control Silo** Contains all of the globally shared data and services. This data is shared between organizations and thus between regions.
66
67
2.**Region Silo** Region silos contain organization data. Each region has independent infrastructure, and holds at least one organization.
67
68
68
-
In addition to the siloed modes, there also exists a **Monolith** mode. In monolith mode both control and region silo modes can be accessed.
69
+
In addition to the siloed modes, there also exists a **Monolith** mode. In monolith mode both control and region silo modes can be accessed. Models, endpoints and tasks are silo-aware and should a siloed resource be used in the wrong silo context an error is raised.
Models, endpoints and tasks are silo-aware and should a siloed resource be used in the wrong silo context an error is raised.
76
+
Each region silo can be scaled independently, and is isolated from other regions. Within each region exists separate, dedicated infrastructure and applications as outlined in the [application overview](/architecture/#high-level-overview).
0 commit comments