flexibleServers
Summary
Details
ゾーン冗長性による HA の有効化
Impact: High Category: High Availability PG Verified: Verified
Description:
フレキシブル サーバー インスタンス上でゾーン冗長性を備えた HA を有効にして、スタンバイ レプリカを別のゾーンにデプロイし、信頼性と災害復旧を向上させるための自動フェイルオーバー機能を提供します。
Potential Benefits:
Enhanced uptime and data protection
Learn More:
ARG Query:
Click the Azure Resource Graph tab to view the query
// Azure Resource Graph Query
// Find Database for PostgreSQL instances that are not zone redundant
resources
| where type == "microsoft.dbforpostgresql/flexibleservers"
| where properties.highAvailability.mode != "ZoneRedundant"
| project recommendationId = "ca87914f-aac4-4783-ab67-82a6f936f194", name, id, tags, param1 = "ZoneRedundant: False"
カスタム メンテナンス スケジュールを有効にする
Impact: High Category: Scalability PG Verified: Verified
Description:
フレキシブル サーバー インスタンスでカスタム メンテナンス スケジュールを使用して、サービス更新を適用する希望の時間を選択します。
Potential Benefits:
Control update timings
Learn More:
ARG Query:
Click the Azure Resource Graph tab to view the query
// Azure Resource Graph Query
// Find Database for PostgreSQL instances that do not have a custom maintenance window
resources
| where type == "microsoft.dbforpostgresql/flexibleservers"
| where properties.maintenanceWindow.customWindow != "Enabled"
| project recommendationId = "b2bad57d-7e03-4c0f-9024-597c9eb295bb", name, id, tags, param1 = strcat("customWindow:", properties['maintenanceWindow']['customWindow'])
地理的冗長バックアップ ストレージを構成する
Impact: High Category: Disaster Recovery PG Verified: Preview
Description:
GRS を構成して、障害や災害が発生した場合でもデータベースが可用性と耐久性の目標を確実に満たすようにします。
Potential Benefits:
Recover from regional failure and/or disaster
Learn More:
ARG Query:
Click the Azure Resource Graph tab to view the query
// Azure Resource Graph Query
// Find Database for PostgreSQL instances that do not have geo redundant backup storage configured
resources
| where type == "microsoft.dbforpostgresql/flexibleservers"
| where properties.backup.geoRedundantBackup != "Enabled"
| project recommendationId = "31f4ac4b-29cb-4588-8de2-d8fe6f13ceb3", name, id, tags, param1 = strcat("geoRedundantBackup:", properties['backup']['geoRedundantBackup'])
1 つ以上のリードレプリカを構成する
Impact: Medium Category: Disaster Recovery PG Verified: Preview
Description:
1 つ以上のリードレプリカを構成して、障害や災害が発生した場合でもデータベースが可用性と耐久性の目標を確実に満たすようにします。
Potential Benefits:
Recover from regional failure and/or disaster
Learn More:
ARG Query:
Click the Azure Resource Graph tab to view the query
// Azure Resource Graph Query
// Find Database for PostgreSQL instances that are read replicas
resources
| where type == "microsoft.dbforpostgresql/flexibleservers"
| where properties.replicationRole == "AsyncReplica"
| project recommendationId = "2ab85a67-26be-4ed2-a0bb-101b2513ec63", name, id, tags, param1 = strcat("replicationRole:", properties['replicationRole'])
ストレージの自動拡張を構成する
Impact: High Category: Scalability PG Verified: Preview
Description:
サーバーのストレージが不足して読み取り専用になるのを防ぐために、ストレージの自動拡張を構成します。
Potential Benefits:
Scale storage automatically to meet increasing demand
Learn More:
ARG Query:
Click the Azure Resource Graph tab to view the query
// cannot-be-validated-with-arg