SignalR
The presented resiliency recommendations in this guidance include SignalR and associated resources and settings.
Summary of Recommendations
Recommendation | Category | Impact | State | ARG Query Available |
---|---|---|---|---|
SIGR-1 - Enable zone redundancy for SignalR | High Availability | High | Preview | Yes |
Definitions of states can be found here
Recommendations Details
SIGR-1 - SignalR のゾーン冗長性を有効にします
Category: Availability
Impact: High
Recommendation/Guidance
運用ワークロードのゾーン冗長性で SignalR を使用します。ゾーン冗長は Premium レベルの機能です。これは、Premium レベルのリソースを作成またはアップグレードするときに暗黙的に有効になります。Standard レベルのリソースは、ダウンタイムなしで Premium レベルにアップグレードできます。
Resources
Resource Graph Query
// Azure Resource Graph Query
// Find SignalR instances that are not configured with the Premium tier
resources
| where type == "microsoft.signalrservice/signalr"
| where sku.tier != "Premium"
| project recommendationId = "sigr-1", name, id, tags, param1 = "AvailabilityZones: Single Zone"
| order by id asc