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
Copy file name to clipboardExpand all lines: articles/azure-cache-for-redis/cache-best-practices-enterprise-tiers.md
+12-10Lines changed: 12 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ The tables show the number of vCPUs used for the primary shards, not the replica
43
43
### E10
44
44
45
45
|Capacity|Effective vCPUs|
46
-
|---|---:|
46
+
|---:|---:|
47
47
| 2 | 2 |
48
48
| 4 | 6 |
49
49
| 6 | 6 |
@@ -53,7 +53,7 @@ The tables show the number of vCPUs used for the primary shards, not the replica
53
53
54
54
### E20
55
55
|Capacity|Effective vCPUs|
56
-
|---|---|
56
+
|---:|---:|
57
57
|2| 2|
58
58
|4|6|
59
59
|6|6|
@@ -63,7 +63,7 @@ The tables show the number of vCPUs used for the primary shards, not the replica
63
63
### E50
64
64
65
65
|Capacity|Effective vCPUs|
66
-
|---|---|
66
+
|---:|---:|
67
67
|2|6|
68
68
|4|6|
69
69
|6|6|
@@ -73,7 +73,7 @@ The tables show the number of vCPUs used for the primary shards, not the replica
73
73
74
74
### E100
75
75
|Capacity|Effective vCPUs|
76
-
|---|---|
76
+
|---:|---:|
77
77
|2| 6|
78
78
|4|30|
79
79
|6|30|
@@ -82,13 +82,13 @@ The tables show the number of vCPUs used for the primary shards, not the replica
82
82
83
83
### F300
84
84
|Capacity|Effective vCPUs|
85
-
|---|---|
85
+
|---:|---:|
86
86
|3| 6|
87
87
|9|30|
88
88
89
89
### F700
90
90
|Capacity|Effective vCPUs|
91
-
|---|---|
91
+
|---:|---:|
92
92
|3| 30|
93
93
|9| 30|
94
94
@@ -122,19 +122,21 @@ For example, consider these tips:
122
122
123
123
- Identify in advance which other cache in the geo-replication group to switch over to if a region goes down.
124
124
- Ensure that firewalls are set so that any applications and clients can access the identified backup cache.
125
-
- Each cache in the geo-replication group has its own access key. Determine how the application switches access keys when targeting a backup cache.
125
+
- Each cache in the geo-replication group has its own access key. Determine how the application will switch access keys when targeting a backup cache.
126
126
- If a cache in the geo-replication group goes down, a buildup of metadata starts to occur in all the caches in the geo-replication group. The metadata can't be discarded until writes can be synced again to all caches. You can prevent the metadata build-up by force unlinking the cache that is down. Consider monitoring the available memory in the cache and unlinking if there's memory pressure, especially for write-heavy workloads.
127
127
<!-- My revision - should the last sentence be its own bullet? -->
128
128
129
-
It's also possible to use a [circuit breaker pattern](/azure/architecture/patterns/circuit-breaker)to automatically redirect traffic away from a cache suffering a region outage and towards a backup cache in the same geo-replication group. Use Azure services such as [Azure Traffic Manager](../traffic-manager/traffic-manager-overview.md) or [Azure Load Balancer](../load-balancer/load-balancer-overview.md) to enable the redirection.
129
+
It's also possible to use a [circuit breaker pattern](/azure/architecture/patterns/circuit-breaker). Use the pattern to automatically redirect traffic away from a cache experiencing a region outage, and towards a backup cache in the same geo-replication group. Use Azure services such as [Azure Traffic Manager](../traffic-manager/traffic-manager-overview.md) or [Azure Load Balancer](../load-balancer/load-balancer-overview.md) to enable the redirection.
130
130
131
131
## Data Persistence vs Data Backup
132
132
133
133
The [data persistence](cache-how-to-premium-persistence.md) feature in the Enterprise and Enterprise Flash tiers is designed to automatically provide a quick recovery point for data when a cache goes down. The quick recovery is made possible by storing the RDB or AOF file in a managed disk that is mounted to the cache instance. Persistence files on the disk aren't accessible to users.
134
134
135
-
Many customers want to use persistence to take periodic backups of the data on their cache. While this is a great idea, data persistence isn’t recommended to be used in this way. Instead, use the [import/export](cache-how-to-import-export-data.md) feature. You can export copies of cache data in RDB format directly into your chosen storage account and trigger the data export as frequently as you require. Export can be triggered either from the portal or by using the CLI, PowerShell, or SDK tools.
135
+
Many customers want to use persistence to take periodic backups of the data on their cache. We don't recommend that you use data persistence in this way. Instead, use the [import/export](cache-how-to-import-export-data.md) feature. You can export copies of cache data in RDB format directly into your chosen storage account and trigger the data export as frequently as you require. Export can be triggered either from the portal or by using the CLI, PowerShell, or SDK tools.
136
136
137
-
<!-- Not sure about this sentence - While this is a great idea, data persistence isn’t recommended to be used in this way. Instead, use the [import/export](cache-how-to-import-export-data.md) feature. -->
137
+
<!-- Not sure about this sentence - While this is a great idea, data persistence isn’t recommended to be used in this way. Instead, use the [import/export](cache-how-to-import-export-data.md) feature.
138
+
It's a great idea but don't do it? See my revision.
0 commit comments