namespaces
Summary
Details
Event Hub Standard レベルで自動インフレを有効にする
Impact: High Category: Scalability PG Verified: Preview
Description:
Event Hub Standard レベルの名前空間で自動インフレを有効にして、TU を自動的にスケールアップし、使用量のニーズを満たし、許可されたレートに調整することでデータの受信または送信のスロットル シナリオを防ぎます。
Potential Benefits:
Prevents throttling by autoscaling TUs
Learn More:
ARG Query:
Click the Azure Resource Graph tab to view the query
// Azure Resource Graph Query
// Find Event Hub namespace instances that are Standard tier and do not have Auto Inflate enabled
resources
| where type == "microsoft.eventhub/namespaces"
| where sku.tier == "Standard"
| where properties.isAutoInflateEnabled == "false"
| project recommendationId = "fbfef3df-04a5-41b2-a8fd-b8541eb04956", name, id, tags, param1 = "AutoInflateEnabled: False"