Azure Proactive Resiliency Library v2
Tools Glossary GitHub GitHub Issues Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

namespaces

Summary

RecommendationImpactCategoryAutomation AvailablePG Verified
Service Bus 名前空間のアベイラビリティーゾーンを有効にするHighHigh AvailabilityYesPreview
Service Bus 名前空間で本番ワークロードの自動スケールを有効にするHighHigh AvailabilityNoPreview

Details


Service Bus 名前空間のアベイラビリティーゾーンを有効にする

Impact:  High Category:  High Availability PG Verified:  Preview

Description:

高可用性を実現するには、ゾーン冗長性を備えた Service Bus を使用します。 Premium SKU は可用性ゾーンをサポートし、同じリージョン内での分離を保証します。メッセージング ストアの 3 つのコピーを管理し、同期を保ちます。

Potential Benefits:

Enhances fault tolerance and uptime
Learn More:
Service Bus and reliability
Azure Service Bus Geo-disaster recovery
Insulate Azure Service Bus applications against outages and disasters

ARG Query:

Click the Azure Resource Graph tab to view the query

// Azure Resource Graph Query
// Returns Service Bus namespaces that do not have any availability zones enabled
resources
| where type =~ 'Microsoft.ServiceBus/namespaces'
| where properties.zoneRedundant == 'false'
| project recommendationId = "20057905-262c-49fe-a9be-49f423afb359", name, id, tags, param1=strcat("zoneRedundant: ", properties.zoneRedundant), param2=strcat("SKU: ", sku.name), param3=iff(tolower(sku.name) == 'premium', 'Move Service Bus namespace to a region that supports Availability Zones', 'Migrate to Premium SKU in a region that supports Availability Zones')



Service Bus 名前空間で本番ワークロードの自動スケールを有効にする

Impact:  High Category:  High Availability PG Verified:  Preview

Description:

高可用性を実現するには、自動スケールを備えた Service Bus を使用します。 Premium SKU は自動スケールをサポートしており、負荷に基づいてリソースが自動的にスケールされます。

Potential Benefits:

Ensures high availability and performance
Learn More:
Service Bus auto-scaling

ARG Query:

Click the Azure Resource Graph tab to view the query

// cannot-be-validated-with-arg