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

Redis

Summary

RecommendationImpactCategoryAutomation AvailablePG Verified
Azure Cache for Redis のゾーン冗長性を有効にするHighHigh AvailabilityYesPreview
メンテナンスウィンドウを設定してアップデートをスケジュールするMediumHigh AvailabilityNoPreview
プライベートエンドポイントの構成MediumSecurityYesPreview

Details


Azure Cache for Redis のゾーン冗長性を有効にする

Impact:  High Category:  High Availability PG Verified:  Preview

Description:

Azure Cache for Redis は、プレミアム レベルとエンタープライズ レベルでゾーン冗長性を提供し、複数の可用性ゾーンにわたる VM を使用して、より優れた復元力と可用性を確保します。

Potential Benefits:

Higher resilience and availability
Learn More:
Enable zone redundancy for Azure Cache for Redis

ARG Query:

Click the Azure Resource Graph tab to view the query

// Azure Resource Graph Query
// Find Cache for Redis instances with one or no Zones selected
resources
| where type =~ "microsoft.cache/redis"
| where array_length(zones) <= 1 or isnull(zones)
| project recommendationId = "5a44bd30-ae6a-4b81-9b68-dc3a8ffca4d8", name, id, tags, param1 = "AvailabilityZones: Single Zone"
| order by id asc



メンテナンスウィンドウを設定してアップデートをスケジュールする

Impact:  Medium Category:  High Availability PG Verified:  Preview

Description:

Azure Cache for Redis では、メンテナンス期間を指定できます。メンテナンス ウィンドウを使用すると、キャッシュをホストしている VM を更新できる曜日と時刻を制御できます。

Potential Benefits:

Higher resilience and availability
Learn More:
Schedule Redis Updates

ARG Query:

Click the Azure Resource Graph tab to view the query

// cannot-be-validated-with-arg


プライベートエンドポイントの構成

Impact:  Medium Category:  Security PG Verified:  Preview

Description:

プライベート エンドポイントを使用して安全な接続を行い、パブリック インターネットを避けてプライベート リンク経由でキャッシュします。

Potential Benefits:

Secure, private VNet ingress, efficient data transfer
Learn More:
Configure private endpoints for Azure Redis Cache

ARG Query:

Click the Azure Resource Graph tab to view the query

// Azure Resource Graph Query
// Find all Azure Redis cache services not protected by private endpoints.
Resources
| where type =~ "microsoft.cache/redis"
| where properties['publicNetworkAccess'] == "Enabled"
| project recommendationId = "c474fc96-4e6a-4fb0-95d0-a26b3f35933c", name, id, tags
| order by id asc