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
Event Hub Standard レベルで自動インフレを有効にするHighScalabilityYesPreview

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:
Azure Event Hubs - Automatically scale throughput units

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"