Skip to content

Commit 623972b

Browse files
authored
Merge pull request #48877 from spelluru/ehubtraining0128
Event Hubs training module - freshness
2 parents bdc5c41 + f11eac6 commit 623972b

14 files changed

+60
-121
lines changed

learn-pr/azure/enable-reliable-messaging-for-big-data-apps-using-event-hubs/1-introduction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Introduction
88
description: Introduction
9-
ms.date: 11/22/2023
9+
ms.date: 01/28/2025
1010
author: spelluru
1111
ms.author: spelluru
1212
ms.topic: unit

learn-pr/azure/enable-reliable-messaging-for-big-data-apps-using-event-hubs/2-create-an-event-hub-using-azure-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Create an event hub using the Azure CLI
88
description: Create an event hub using the Azure CLI
9-
ms.date: 11/22/2023
9+
ms.date: 01/28/2025
1010
author: spelluru
1111
ms.author: spelluru
1212
ms.topic: unit

learn-pr/azure/enable-reliable-messaging-for-big-data-apps-using-event-hubs/3-exercise-create-an-event-hub-using-azure-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Exercise - Use the Azure CLI to Create an event hub
88
description: Use the Azure CLI to Create an event hub
9-
ms.date: 11/22/2023
9+
ms.date: 01/28/2025
1010
author: spelluru
1111
ms.author: spelluru
1212
ms.topic: unit

learn-pr/azure/enable-reliable-messaging-for-big-data-apps-using-event-hubs/4-configure-applications-to-send-or-receive-messages-through-an-event-hub.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Configure applications to send or receive messages through an event hub
88
description: Configure applications to send or receive messages through an event hub
9-
ms.date: 11/22/2023
9+
ms.date: 01/28/2025
1010
author: spelluru
1111
ms.author: spelluru
1212
ms.topic: unit

learn-pr/azure/enable-reliable-messaging-for-big-data-apps-using-event-hubs/5-exercise-configure-applications-to-send-or-receive-messages-through-an-event-hub.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Exercise - Configure applications to send or receive messages through an event hub
88
description: Configure applications to send or receive messages through an event hub
9-
ms.date: 11/22/2023
9+
ms.date: 01/28/2025
1010
author: spelluru
1111
ms.author: spelluru
1212
ms.topic: unit

learn-pr/azure/enable-reliable-messaging-for-big-data-apps-using-event-hubs/6-evaluate-the-performance-of-the-deployed-event-hub-using-the-azure-portal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Evaluate the performance of the deployed event hub using the Azure portal
88
description: Evaluate the performance of the deployed event hub using the Azure portal
9-
ms.date: 11/22/2023
9+
ms.date: 01/28/2025
1010
author: spelluru
1111
ms.author: spelluru
1212
ms.topic: unit

learn-pr/azure/enable-reliable-messaging-for-big-data-apps-using-event-hubs/7-exercise-evaluate-the-performance-of-the-deployed-event-hub-using-the-azure-portal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Exercise - Evaluate the performance of the deployed event hub using the Azure portal
88
description: Evaluate the performance of the deployed event hub using the Azure portal
9-
ms.date: 11/22/2023
9+
ms.date: 01/28/2025
1010
author: spelluru
1111
ms.author: spelluru
1212
ms.topic: unit

learn-pr/azure/enable-reliable-messaging-for-big-data-apps-using-event-hubs/8-summary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Summary
88
description: Summary
9-
ms.date: 11/22/2023
9+
ms.date: 01/28/2025
1010
author: spelluru
1111
ms.author: spelluru
1212
ms.topic: unit

learn-pr/azure/enable-reliable-messaging-for-big-data-apps-using-event-hubs/includes/1-introduction.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,8 @@ In this module, you will:
1515
- Create an event hub using the Azure CLI.
1616
- Configure apps to send or receive messages through an event hub.
1717
- Evaluate your event hub performance using the Azure portal.
18+
19+
## Prerequisites
20+
21+
- Experience using [Visual Studio Code](https://code.visualstudio.com/download) to develop, build, and run C# console applications.
22+
- Experience using Git repositories and Git Bash. Download [Git for Windows](https://git-scm.com/downloads/win) if you don't have it already on your computer.

learn-pr/azure/enable-reliable-messaging-for-big-data-apps-using-event-hubs/includes/2-create-an-event-hub-using-azure-cli.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Your team makes a decision to use the capabilities of Azure Event Hubs to manage and process the increasing transaction volumes coming through your system.
22

3-
An event hub is an Azure resource, so your first step is to create a new hub in Azure, and configure it to meet the specific requirements of your apps.
3+
An event hub is an Azure resource, so your first step is to create a new event hub in Azure, and configure it to meet the specific requirements of your apps.
44

55
## What is Azure Event Hubs?
66

@@ -33,7 +33,7 @@ An event hub **consumer group** represents a specific view of an event hub data
3333

3434
### Pricing
3535

36-
There are four pricing tiers for Azure Event Hubs: Basic, Standard, Premium, and Dedicated. The tiers differ in terms of supported connections, the number of available consumer groups, and throughput. When using Azure CLI to create an Event Hubs namespace, if you don't specify a pricing tier, the default **Standard** (20 Consumer groups, 1000 Brokered connections) is assigned. For the main differences between these tiers, see [Azure Event Hubs - Pricing](https://azure.microsoft.com/pricing/details/event-hubs/).
36+
There are four pricing tiers for Azure Event Hubs: Basic, Standard, Premium, and Dedicated. The tiers differ in terms of supported connections, the number of available consumer groups, and throughput. When using Azure CLI to create an Event Hubs namespace, if you don't specify a pricing tier, the default **Standard** (20 Consumer groups, 1,000 Brokered connections) is assigned. For the main differences between these tiers, see [Azure Event Hubs - Pricing](https://azure.microsoft.com/pricing/details/event-hubs/).
3737

3838
## Create and configure an event hub
3939

@@ -65,7 +65,7 @@ Keep the following aspects in mind:
6565

6666
### Azure CLI commands to create an Event Hubs namespace
6767

68-
To create a new Event Hubs namespace, use `az eventhubs namespace` commands. Here's a brief description of the commands we use in the exercise.
68+
To create a new Event Hubs namespace, use [`az eventhubs namespace`](/cli/azure/eventhubs/namespace#az-eventhubs-namespace-create) commands. Here's a brief description of the commands we use in the exercise.
6969

7070
| Command | Description |
7171
|---------|-------------|
@@ -89,7 +89,7 @@ You can also optionally configure an event hub to stream data to Azure Blob Stor
8989

9090
### Azure CLI commands to create an event hub
9191

92-
To create a new event hub with the Azure CLI, you run the `az eventhubs eventhub` command set. Here's a brief description of the commands we use in the exercise.
92+
To create a new event hub with the Azure CLI, you run the [`az eventhubs eventhub`](/cli/azure/eventhubs/eventhub) command set. Here's a brief description of the commands we use in the exercise.
9393

9494
| Command | Description |
9595
|---------|-------------|

0 commit comments

Comments
 (0)