You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/event-hubs/event-hubs-quickstart-kafka-enabled-event-hubs.md
+7-8Lines changed: 7 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,13 @@
1
1
---
2
-
title: 'Quickstart: Data streaming with Azure Event Hubs using the Kafka protocol'
3
-
description: 'Quickstart: This article provides information on how to stream into Azure Event Hubs using the Kafka protocol and APIs.'
2
+
title: 'Quickstart: Use Apache Kafka with Azure Event Hubs'
3
+
description: 'This quickstart shows you how to stream data into and from Azure Event Hubs using the Apache Kafka protocol.'
4
4
ms.topic: quickstart
5
-
ms.date: 11/02/2022
5
+
ms.date: 02/07/2023
6
6
ms.custom: mode-other, passwordless-java
7
7
---
8
8
9
-
# Quickstart: Data streaming with Event Hubs using the Kafka protocol
10
-
11
-
This quickstart shows how to stream into Event Hubs without changing your protocol clients or running your own clusters. You learn how to use your producers and consumers to talk to Event Hubs with just a configuration change in your applications.
9
+
# Quickstart: Stream data with Azure Event Hubs and Apache Kafka
10
+
This quickstart shows you how to stream data into and from Azure Event Hubs using the Apache Kafka protocol. You'll not change any code in the sample Kafka producer or consumer apps. You just update the configurations that the clients use to point to an Event Hubs namespace, which exposes a Kafka endpoint. You also don't build and use a Kafka cluster on your own. Instead, you'll use the Event Hubs namespace with the Kafka endpoint.
12
11
13
12
> [!NOTE]
14
13
> This sample is available on [GitHub](https://github.com/Azure/azure-event-hubs-for-kafka/tree/master/quickstart/java)
@@ -24,14 +23,14 @@ To complete this quickstart, make sure you have the following prerequisites:
24
23
*[Download](https://maven.apache.org/download.cgi) and [install](https://maven.apache.org/install.html) a Maven binary archive.
25
24
*[Git](https://www.git-scm.com/)
26
25
27
-
## Create an Event Hubs namespace
26
+
## Create an Azure Event Hubs namespace
28
27
29
28
When you create an Event Hubs namespace, the Kafka endpoint for the namespace is automatically enabled. You can stream events from your applications that use the Kafka protocol into event hubs. Follow step-by-step instructions in the [Create an event hub using Azure portal](event-hubs-create.md) to create an Event Hubs namespace. If you're using a dedicated cluster, see [Create a namespace and event hub in a dedicated cluster](event-hubs-dedicated-cluster-create-portal.md#create-a-namespace-and-event-hub-within-a-cluster).
30
29
31
30
> [!NOTE]
32
31
> Event Hubs for Kafka isn't supported in the **basic** tier.
33
32
34
-
## Send and receive messages with Kafka in Event Hubs
33
+
## Use Apache Kafka to send and receive events from Azure Event Hubs
0 commit comments