Creating an Event Hub in Azure Event Hubs

This tutorial guides you through the process of creating a new Event Hub within an Azure Event Hubs namespace. Event Hubs is a highly scalable data streaming platform and event ingestion service that can receive and process millions of events per second.

Prerequisites

Steps to Create an Event Hub

1. Navigate to your Event Hubs Namespace

  1. Log in to the Azure portal.
  2. In the search bar at the top, type Event Hubs and select Event Hubs from the search results.
  3. Select your existing Event Hubs namespace from the list.

2. Initiate Event Hub Creation

  1. On the overview page of your Event Hubs namespace, click the + Event Hub button in the toolbar.

3. Configure Event Hub Settings

A panel will appear on the right side of the screen to configure the new Event Hub.

Understanding Partitions

The partition count impacts the parallelism of event processing. Consumers can read from partitions in parallel. Choose a partition count that aligns with your expected event throughput and processing capabilities.

4. Create the Event Hub

  1. After filling in the required details, click the Create button at the bottom of the panel.

The Azure portal will begin creating your Event Hub. This process usually takes a few moments. You'll see a notification in the portal indicating the deployment status.

5. Verify Event Hub Creation

  1. Once the creation is complete, you should see your newly created Event Hub listed under the Event Hubs section of your namespace's overview page.

Congratulations! You have successfully created an Event Hub. You can now configure applications or services to send events to and receive events from this Event Hub.

Next Steps

Explore how to send messages to your Event Hub using various SDKs or learn about setting up consumer groups for receiving events.

Get Connection String View Metrics