Azure Event Hubs is a highly scalable publish-subscribe service that can ingest millions of events per second and stream them to multiple consumers. This lets you process and analyze the massive amounts of data produced by your connected devices and applications. Once Event Hubs has collected the data, you can retrieve, transform and store it by using any real-time analytics provider or with batching/storage adapters. If you would like to know more about Azure Event Hubs, you may wish to review: What is Event Hubs?
The Azure Event Hubs client library allows for publishing and consuming of Azure Event Hubs events and may be used to:
-
Emit telemetry about your application for business intelligence and diagnostic purposes.
-
Publish facts about the state of your application which interested parties may observe and use as a trigger for taking action.
-
Observe interesting operations and interactions happening within your business or other ecosystem, allowing loosely coupled systems to interact without the need to bind them together.
-
Receive events from one or more publishers, transform them to better meet the needs of your ecosystem, then publish the transformed events to a new stream for consumers to observe.
Source code | Package (NuGet) | API reference documentation | Product documentation
-
Microsoft Azure Subscription: To use Azure services, including Azure Event Hubs, you'll need a subscription. If you do not have an existing Azure account, you may sign up for a free trial or use your MSDN subscriber benefits when you create an account.
-
Event Hubs namespace with an Event Hub: To interact with Azure Event Hubs, you'll also need to have a namespace and Event Hub available. If you are not familiar with creating Azure resources, you may wish to follow the step-by-step guide for creating an Event Hub using the Azure portal. There, you can also find detailed instructions for using the Azure CLI, Azure PowerShell, or Azure Resource Manager (ARM) templates to create an Event Hub.
To quickly create the needed Event Hubs resources in Azure and to receive a connection string for them, you can deploy our sample template by clicking:
Install the Azure Event Hubs client library for .NET with NuGet:
Install-Package Azure.Messaging.EventHubs -Version 5.0.0-preview.2
For the Event Hubs client library to interact with an Event Hub, it will need to understand how to connect and authorize with it. The easiest means for doing so is to use a connection string, which is created automatically when creating an Event Hubs namespace. If you aren't familiar with shared access policies in Azure, you may wish to follow the step-by-step guide to get an Event Hubs connection string.
Once the Event Hub and connection string are available, they can be used to create a client for interacting with Azure Event Hubs. The simplest way to create an EventHubClient
is:
var connectionString = "<< CONNECTION STRING FOR THE EVENT HUBS NAMESPACE >>";
var eventHubName = "<< NAME OF THE EVENT HUB >>";
var client = new EventHubClient(connectionString, eventHubName);
-
An Event Hub client is the primary interface for developers interacting with the Event Hubs client library, allowing for inspection of Event Hub metadata and providing a guided experience towards specific Event Hub operations such as the creation of producers and consumers.
-
An Event Hub producer is a source of telemetry data, diagnostics information, usage logs, or other log data, as part of an embedded device solution, a mobile device application, a game title running on a console or other device, some client or server based business solution, or a web site.
-
An Event Hub consumer picks up such information from the Event Hub and processes it. Processing may involve aggregation, complex computation and filtering. Processing may also involve distribution or storage of the information in a raw or transformed fashion. Event Hub consumers are often robust and high-scale platform infrastructure parts with built-in analytics capabilities, like Azure Stream Analytics, Apache Spark, or Apache Storm.
-
A partition is an ordered sequence of events that is held in an Event Hub. Partitions are a means of data organization associated with the parallelism required by event consumers. Azure Event Hubs provides message streaming through a partitioned consumer pattern in which each consumer only reads a specific subset, or partition, of the message stream. As newer events arrive, they are added to the end of this sequence. The number of partitions is specified at the time an Event Hub is created and cannot be changed.
-
A consumer group is a view of an entire Event Hub. Consumer groups enable multiple consuming applications to each have a separate view of the event stream, and to read the stream independently at their own pace and from their own position. There can be at most 5 concurrent readers on a partition per consumer group; however it is recommended that there is only one active consumer for a given partition and consumer group pairing. Each active reader receives all of the events from its partition; if there are multiple readers on the same partition, then they will receive duplicate events.
For more concepts and deeper discussion, see: Event Hubs Features.
Many Event Hub operations take place within the scope of a specific partition. Because partitions are owned by the Event Hub, their names are assigned at the time of creation. To understand what partitions are available, you query the Event Hub using the client.
var connectionString = "<< CONNECTION STRING FOR THE EVENT HUBS NAMESPACE >>";
var eventHubName = "<< NAME OF THE EVENT HUB >>";
await using (var client = new EventHubClient(connectionString, eventHubName))
{
string[] partitionIds = await client.GetPartitionIdsAsync();
}
In order to publish events, you'll need to create an EventHubProducer
. Producers may be dedicated to a specific partition, or allow the Event Hubs service to decide which partition events should be published to. It is recommended to use automatic routing when the publishing of events needs to be highly available or when event data should be distributed evenly among the partitions. In the our example, we will take advantage of automatic routing.
var connectionString = "<< CONNECTION STRING FOR THE EVENT HUBS NAMESPACE >>";
var eventHubName = "<< NAME OF THE EVENT HUB >>";
await using (var client = new EventHubClient(connectionString, eventHubName))
await using (EventHubProducer producer = client.CreateProducer())
{
var eventsToPublish = new EventData[]
{
new EventData(Encoding.UTF8.GetBytes("First")),
new EventData(Encoding.UTF8.GetBytes("Second"))
};
await producer.SendAsync(eventsToPublish);
}
In order to consume events for an Event Hub partition, you'll need to create an EventHubConsumer
for that partition and consumer group combination. When an Event Hub is created, it provides a default consumer group that can be used to get started. A consumer also needs to specify where in the event stream to begin receiving events; in our example, we will focus on reading all published events in a partition using an iterator.
var connectionString = "<< CONNECTION STRING FOR THE EVENT HUBS NAMESPACE >>";
var eventHubName = "<< NAME OF THE EVENT HUB >>";
await using (var client = new EventHubClient(connectionString, eventHubName))
{
string firstPartition = (await client.GetPartitionIdsAsync()).First();
string consumerGroup = EventHubConsumer.DefaultConsumerGroup;
EventPosition startingPosition = EventPosition.Earliest;
await using (EventHubConsumer consumer = client.CreateConsumer(consumerGroup, firstPartition, startingPosition))
{
using CancellationTokenSource cancellationSource = new CancellationTokenSource();
cancellationSource.CancelAfter(TimeSpan.FromSeconds(45));
await foreach (EventData receivedEvent in consumer.SubcribeToEvents(cancellationSource.Token))
{
// At this point, the loop will wait for events to be available in the partition. When an event
// is available, the loop will iterate with the received event available. Because we did not
// specify a maximum wait time, the loop will wait forever unless cancellation is requested using
// the cancellation token.
}
}
}
To consume events for all partitions of an Event Hub, you'll create an EventProcessor
for a specific consumer group. When an Event Hub is created, it provides a default consumer group that can be used to get started.
The EventProcessor
will delegate processing of events to a IPartitionProcessor
implementation that you provide, allowing your logic to focus on the logic needed to provide value while the processor holds responsibility for managing the underlying consumer operations. In our example, we will focus on building the EventProcessor
and use a very minimal partition processor that does no actual processing.
public class SimplePartitionProcessor : IPartitionProcessor
{
public Task InitializeAsync() => Task.CompletedTask;
public Task CloseAsync((PartitionProcessorCloseReason reason) => Task.CompletedTask;
public Task ProcessEventsAsync(IEnumerable<EventData> events, CancellationToken cancellationToken) => Task.CompletedTask;
public Task ProcessErrorAsync(Exception exception, CancellationToken cancellationToken) => Task.CompletedTask;
}
// This function is used by the EventProcessor to create a new partition processor for each partition of the
// Event Hub.
//
// Its implementation may take various forms, such as a local function (as illustrated), a class or
// static method, an inline lambda, or a variable of type Func<PartitionContext, CheckpointManager, IPartitionProcessor>.
IPartitionProcessor SimpleProcessorFactory(PartitionContext context, CheckpointManager manager)
{
return new SimplePartitionProcessor();
}
var connectionString = "<< CONNECTION STRING FOR THE EVENT HUBS NAMESPACE >>";
var eventHubName = "<< NAME OF THE EVENT HUB >>";
await using (var client = new EventHubClient(connectionString, eventHubName))
{
string consumerGroup = EventHubConsumer.DefaultConsumerGroup;
PartitionManager partitionManager = new InMemoryPartitionManager(Console.WriteLine);
EventProcessor processor = new EventProcessor(consumerGroup, client, SimpleProcessorFactory);
await processor.StartAsync();
// At this point, the processor is consuming events from each partition of the Event Hub and
// delegating them to the SimplePartitionProcessor instance created for that partition. This
// processing takes place in the background and will not block.
//
// It is important to note that the processor does not own the EventHubClient that was passed into it.
// You are responsible for ensuring that it is disposed after processing. It is also important that it
// not be closed or disposed during the time that the EventProcessor is running.
//
// In this example, we'll stop processing after five minutes.
await Task.Delay(TimeSpan.FromMinutes(5));
await processor.StopAsync();
}
This occurs when an operation has been requested on a client, producer, or consumer that has already been closed or disposed of. It is recommended to check the application code and ensure that objects from the Event Hubs client library are created and closed/disposed in the intended scope.
This indicates that the Event Hubs service did not respond to an operation within the expected amount of time. This may have been caused by a transient network issue or service problem. The Event Hubs service may or may not have successfully completed the request; the status is not known. It is recommended to attempt to verify the current state and retry if necessary.
Event data, both individual and in batches, have a maximum size allowed. This includes the data of the event, as well as any associated metadata and system overhead. The best approach for resolving this error is to reduce the number of events being sent in a batch or the size of data included in the message. Because size limits are subject to change, please refer to Azure Event Hubs quotas and limits for specifics.
For detailed information about these and other exceptions that may occur, please refer to Event Hubs messaging exceptions.
Beyond the scenarios discussed, the Azure Event Hubs client library offers support for many additional scenarios to help take advantage of the full feature set of the Azure Event Hubs service. In order to help explore some of these scenarios, the Event Hubs client library offers a project of samples to serve as an illustration for common scenarios.
The samples are accompanied by a console application which you can use to execute and debug them interactively. The simplest way to begin is to launch the project for debugging in Visual Studio or your preferred IDE and provide the Event Hubs connection information in response to the prompts.
Each of the samples is self-contained and focused on illustrating one specific scenario. Each is numbered, with the lower numbers concentrating on basic scenarios and building to more complex scenarios as they increase; though each sample is independent, it will assume an understanding of the content discussed in earlier samples.
The available samples are:
-
Hello world
An introduction to Event Hubs, illustrating how to connect and query the service. -
Create an Event Hub client with custom options
An introduction to Event Hubs, exploring additional options for creating an Event Hub client. -
Publish an event to an Event Hub
An introduction to publishing events, using a simple Event Hub producer. -
Publish events using a partition key
An introduction to publishing events, using a partition key to group them together. -
Publish a size-limited batch of events
An introduction to publishing events, using a size-aware batch to ensure the size does not exceed the transport size limits. -
Publish events to a specific Event Hub partition
An introduction to publishing events, using an Event Hub producer that is associated with a specific partition. -
Publish events with custom metadata
An example of publishing events, extending the event data with custom metadata. -
Consume events from an Event Hub partition
An introduction to consuming events, using a simple Event Hub consumer. -
Consume events from an Event Hub partition, limiting the period of time to wait for an event
An introduction to consuming events, using an Event Hub consumer with maximum wait time. -
Consume events from a known position in the Event Hub partition
An example of consuming events, starting at a well-known position in the Event Hub partition. -
Consume events from an Event Hub partition in batches
An example of consuming events, using a batch approach to control throughput.
-
Consume events from all partitions of an Event Hub with the Event Processor
An example of consuming events from all Event Hub partitions at once, using the Event Processor.
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.
Please see our contributing guide for more information.