This repository has been archived by the owner on May 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add event hub recommendation evhns-1 (#107)
Co-authored-by: Luis Alfonso Chaves <[email protected]>
- Loading branch information
Showing
4 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
+++ | ||
title = "Event Hub" | ||
description = "Best practices and resiliency recommendations for Event Hub and associated resources and settings." | ||
date = "10/6/23" | ||
author = "ejhenry" | ||
msAuthor = "ejhenry" | ||
draft = false | ||
+++ | ||
|
||
The presented resiliency recommendations in this guidance include Event Hub and associated resources and settings. | ||
|
||
## Summary of Recommendations | ||
|
||
{{< table style="table-striped" >}} | ||
| Recommendation | Category | Impact | State | ARG Query Available | | ||
| :------------------------------------------------ | :---------------------------------------------------------------------: | :------: | :------: | :-----------------: | | ||
| [EVHNS-1 - Enable zone redundancy for Event Hub namespace](#evhns-1---enable-zone-redundancy-for-event-hub-namespace) | High Availability | High | Preview | Yes | | ||
{{< /table >}} | ||
|
||
{{< alert style="info" >}} | ||
|
||
Definitions of states can be found [here]({{< ref "../../../_index.md#definitions-of-terms-used-in-aprl">}}) | ||
|
||
{{< /alert >}} | ||
|
||
## Recommendations Details | ||
|
||
### EVHNS-1 - Enable zone redundancy for Event Hub namespace | ||
|
||
**Category: Availability** | ||
|
||
**Impact: High** | ||
|
||
**Recommendation** | ||
|
||
Event Hubs supports Availability Zones, providing fault-isolated locations within an Azure region. The Availability Zones support is only available in Azure regions with availability zones. Both metadata and data (events) are replicated across data centers in the availability zone. | ||
|
||
**Resources** | ||
|
||
- [Azure Event Hubs - Geo-disaster recovery](https://learn.microsoft.com/azure/event-hubs/event-hubs-geo-dr?tabs=portal#availability-zones) | ||
|
||
**Resource Graph Query/Scripts** | ||
|
||
{{< collapse title="Show/Hide Query/Script" >}} | ||
|
||
{{< code lang="sql" file="code/evhns-1/evhns-1.kql" >}} {{< /code >}} | ||
|
||
{{< /collapse >}} | ||
|
||
<br><br> |
1 change: 1 addition & 0 deletions
1
docs/content/services/integration/event-hub/code/evhns-1/evhns-1.azcli
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
:: under-development |
7 changes: 7 additions & 0 deletions
7
docs/content/services/integration/event-hub/code/evhns-1/evhns-1.kql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// Azure Resource Graph Query | ||
// Find Event Hub namespace instances that are not zone redundant | ||
resources | ||
| where type == "microsoft.eventhub/namespaces" | ||
| where properties.zoneRedundant == false | ||
| project recommendationId = "evhns-1", name, id, param1 = "ZoneRedundant: False" | ||
| order by id asc |
1 change: 1 addition & 0 deletions
1
docs/content/services/integration/event-hub/code/evhns-1/evhns-1.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# under-development |