Skip to content

Commit e7e001a

Browse files
committed
Kafka enabled by default
1 parent 7a5a449 commit e7e001a

11 files changed

+72
-72
lines changed

articles/event-hubs/event-hubs-exchange-events-different-protocols.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -338,10 +338,10 @@ String myStringProperty = new String(rawbytes, StandardCharsets.UTF_8);
338338
```
339339

340340
## Next steps
341-
In this article, you learned how to stream into Kafka-enabled Event Hubs without changing your protocol clients or running your own clusters. To learn more about Event Hubs and Event Hubs for Kafka, see the following articles:
341+
In this article, you learned how to stream into Event Hubs without changing your protocol clients or running your own clusters. To learn more about Event Hubs and Event Hubs for Kafka, see the following articles:
342342

343343
* [Learn about Event Hubs](event-hubs-what-is-event-hubs.md)
344344
* [Learn about Event Hubs for Kafka](event-hubs-for-kafka-ecosystem-overview.md)
345345
* [Explore more samples on the Event Hubs for Kafka GitHub](https://github.com/Azure/azure-event-hubs-for-kafka)
346-
* Use [MirrorMaker](https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=27846330) to [stream events from Kafka on premises to Kafka enabled Event Hubs on cloud.](event-hubs-kafka-mirror-maker-tutorial.md)
347-
* Learn how to stream into Kafka enabled Event Hubs using [native Kafka applications](event-hubs-quickstart-kafka-enabled-event-hubs.md), [Apache Flink](event-hubs-kafka-flink-tutorial.md), or [Akka Streams](event-hubs-kafka-akka-streams-tutorial.md)
346+
* Use [MirrorMaker](https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=27846330) to [stream events from Kafka on premises to Event Hubs on cloud.](event-hubs-kafka-mirror-maker-tutorial.md)
347+
* Learn how to stream into Event Hubs using [native Kafka applications](event-hubs-quickstart-kafka-enabled-event-hubs.md), [Apache Flink](event-hubs-kafka-flink-tutorial.md), or [Akka Streams](event-hubs-kafka-akka-streams-tutorial.md)

articles/event-hubs/event-hubs-faq.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ If you use the zone redundancy for your namespace, you need to do a few addition
106106
Event Hubs provides a Kafka endpoint that can be used by your existing Apache Kafka based applications. A configuration change is all that is required to have the PaaS Kafka experience. It provides an alternative to running your own Kafka cluster. Event Hubs supports Apache Kafka 1.0 and newer client versions and works with your existing Kafka applications, tools, and frameworks. For more information, see [Event Hubs for Kafka repo](https://github.com/Azure/azure-event-hubs-for-kafka).
107107
108108
### What configuration changes need to be done for my existing application to talk to Event Hubs?
109-
To connect to a Kafka-enabled Event Hub, you'll need to update the Kafka client configs. It's done by creating an Event Hubs namespace and obtaining the [connection string](event-hubs-get-connection-string.md). Change the bootstrap.servers to point the Event Hubs FQDN and the port to 9093. Update the sasl.jaas.config to direct the Kafka client to your Kafka-enabled Event Hubs endpoint (which is the connection string you've obtained), with correct authentication as shown below:
109+
To connect to an event hub, you'll need to update the Kafka client configs. It's done by creating an Event Hubs namespace and obtaining the [connection string](event-hubs-get-connection-string.md). Change the bootstrap.servers to point the Event Hubs FQDN and the port to 9093. Update the sasl.jaas.config to direct the Kafka client to your Event Hubs endpoint (which is the connection string you've obtained), with correct authentication as shown below:
110110
111111
bootstrap.servers={YOUR.EVENTHUBS.FQDN}:9093
112112
request.timeout.ms=60000
@@ -124,8 +124,8 @@ sasl.jaas.config=org.apache.kafka.common.security.plain.PlainLoginModule require
124124
125125
Note: If sasl.jaas.config isn't a supported configuration in your framework, find the configurations that are used to set the SASL username and password and use those instead. Set the username to $ConnectionString and the password to your Event Hubs connection string.
126126
127-
### What is the message/event size for Kafka-enabled Event Hubs?
128-
The maximum message size allowed for Kafka-enabled Event Hubs is 1 MB.
127+
### What is the message/event size for Event Hubs?
128+
The maximum message size allowed for Event Hubs is 1 MB.
129129
130130
## Throughput units
131131

articles/event-hubs/event-hubs-for-kafka-ecosystem-overview.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ sasl.jaas.config=org.apache.kafka.common.security.plain.PlainLoginModule require
6868
```
6969

7070
#### Samples
71-
For a **tutorial** with step-by-step instructions to create a Kafka enabled event hub and access it using SAS or OAuth, see [Quickstart: Data streaming with Event Hubs using the Kafka protocol](event-hubs-quickstart-kafka-enabled-event-hubs.md).
71+
For a **tutorial** with step-by-step instructions to create an event hub and access it using SAS or OAuth, see [Quickstart: Data streaming with Event Hubs using the Kafka protocol](event-hubs-quickstart-kafka-enabled-event-hubs.md).
7272

7373
For more **samples** that show how to use OAuth with Event Hubs for Kafka, see [samples on GitHub](https://github.com/Azure/azure-event-hubs-for-kafka/tree/master/tutorials/oauth).
7474

@@ -93,13 +93,13 @@ Here is the list of Kafka features that are not yet supported:
9393

9494
This article provided an introduction to Event Hubs for Kafka. To learn more, see the following links:
9595

96-
- [How to create Kafka enabled Event Hubs](event-hubs-create-kafka-enabled.md)
96+
- [How to create an event hub](event-hubs-create.md)
9797
- [Stream into Event Hubs from your Kafka applications](event-hubs-quickstart-kafka-enabled-event-hubs.md)
98-
- [Mirror a Kafka broker in a Kafka-enabled event hub](event-hubs-kafka-mirror-maker-tutorial.md)
99-
- [Connect Apache Spark to a Kafka-enabled event hub](event-hubs-kafka-spark-tutorial.md)
100-
- [Connect Apache Flink to a Kafka-enabled event hub](event-hubs-kafka-flink-tutorial.md)
101-
- [Integrate Kafka Connect with a Kafka-enabled event hub](event-hubs-kafka-connect-tutorial.md)
102-
- [Connect Akka Streams to a Kafka-enabled event hub](event-hubs-kafka-akka-streams-tutorial.md)
98+
- [Mirror a Kafka broker in an event hub](event-hubs-kafka-mirror-maker-tutorial.md)
99+
- [Connect Apache Spark to an event hub](event-hubs-kafka-spark-tutorial.md)
100+
- [Connect Apache Flink to an event hub](event-hubs-kafka-flink-tutorial.md)
101+
- [Integrate Kafka Connect with an event hub](event-hubs-kafka-connect-tutorial.md)
102+
- [Connect Akka Streams to an event hub](event-hubs-kafka-akka-streams-tutorial.md)
103103
- [Explore samples on our GitHub](https://github.com/Azure/azure-event-hubs-for-kafka)
104104

105105

articles/event-hubs/event-hubs-kafka-akka-streams-tutorial.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ms.author: shvija
1818
---
1919

2020
# Using Akka Streams with Event Hubs for Apache Kafka
21-
This tutorial shows you how to connect Akka Streams to Kafka-enabled event hubs without changing your protocol clients or running your own clusters. Azure Event Hubs for the Kafka supports [Apache Kafka version 1.0.](https://kafka.apache.org/10/documentation.html)
21+
This tutorial shows you how to connect Akka Streams to an event hub without changing your protocol clients or running your own clusters. Azure Event Hubs for the Kafka supports [Apache Kafka version 1.0.](https://kafka.apache.org/10/documentation.html)
2222

2323
In this tutorial, you learn how to:
2424
> [!div class="checklist"]
@@ -46,11 +46,11 @@ To complete this tutorial, make sure you have the following prerequisites:
4646

4747
## Create an Event Hubs namespace
4848

49-
An Event Hubs namespace is required to send or receive from any Event Hubs service. See [Create Kafka Enabled Event Hubs](event-hubs-create-kafka-enabled.md) for information about getting an Event Hubs Kafka endpoint. Make sure to copy the Event Hubs connection string for later use.
49+
An Event Hubs namespace is required to send or receive from any Event Hubs service. See [Create Kafka Enabled Event Hubs](event-hubs-create.md) for information about getting an Event Hubs Kafka endpoint. Make sure to copy the Event Hubs connection string for later use.
5050

5151
## Clone the example project
5252

53-
Now that you have a Kafka-enabled Event Hubs connection string, clone the Azure Event Hubs for Kafka repository and navigate to the `akka` subfolder:
53+
Now that you have a Event Hubs connection string, clone the Azure Event Hubs for Kafka repository and navigate to the `akka` subfolder:
5454

5555
```shell
5656
git clone https://github.com/Azure/azure-event-hubs-for-kafka.git
@@ -92,11 +92,11 @@ mvn clean package
9292
mvn exec:java -Dexec.mainClass="AkkaTestProducer"
9393
```
9494

95-
The producer begins sending events to the Kafka-enabled event hub at topic `test`, and prints the events to stdout.
95+
The producer begins sending events to the event hub at topic `test`, and prints the events to stdout.
9696

9797
## Run Akka Streams consumer
9898

99-
Using the provided consumer example, receive messages from the Kafka-enabled event hubs.
99+
Using the provided consumer example, receive messages from the event hub.
100100

101101
### Provide an Event Hubs Kafka endpoint
102102

@@ -132,12 +132,12 @@ mvn clean package
132132
mvn exec:java -Dexec.mainClass="AkkaTestConsumer"
133133
```
134134

135-
If the Kafka-enabled event hub has events (for instance, if your producer is also running), then the consumer begins receiving events from topic `test`.
135+
If the event hub has events (for instance, if your producer is also running), then the consumer begins receiving events from topic `test`.
136136

137137
Check out the [Akka Streams Kafka Guide](https://doc.akka.io/docs/akka-stream-kafka/current/home.html) for more detailed information about Akka Streams.
138138

139139
## Next steps
140-
In this tutorial, you learned how to connect Akka Streams to Kafka-enabled event hubs without changing your protocol clients or running your own clusters. Azure Event Hubs for the Kafka supports [Apache Kafka version 1.0.](https://kafka.apache.org/10/documentation.html). You did the following actions as part of this tutorial:
140+
In this tutorial, you learned how to connect Akka Streams to the event hub without changing your protocol clients or running your own clusters. Azure Event Hubs for the Kafka supports [Apache Kafka version 1.0.](https://kafka.apache.org/10/documentation.html). You did the following actions as part of this tutorial:
141141

142142
> [!div class="checklist"]
143143
> * Create an Event Hubs namespace
@@ -149,10 +149,10 @@ To learn more about Event Hubs and Event Hubs for Kafka, see the following topic
149149

150150
- [Learn about Event Hubs](event-hubs-what-is-event-hubs.md)
151151
- [Event Hubs for Apache Kafka](event-hubs-for-kafka-ecosystem-overview.md)
152-
- [How to create Kafka enabled Event Hubs](event-hubs-create-kafka-enabled.md)
152+
- [How to create an event hub](event-hubs-create.md)
153153
- [Stream into Event Hubs from your Kafka applications](event-hubs-quickstart-kafka-enabled-event-hubs.md)
154-
- [Mirror a Kafka broker in a Kafka-enabled event hub](event-hubs-kafka-mirror-maker-tutorial.md)
155-
- [Connect Apache Spark to a Kafka-enabled event hub](event-hubs-kafka-spark-tutorial.md)
156-
- [Connect Apache Flink to a Kafka-enabled event hub](event-hubs-kafka-flink-tutorial.md)
157-
- [Integrate Kafka Connect with a Kafka-enabled event hub](event-hubs-kafka-connect-tutorial.md)
154+
- [Mirror a Kafka broker in an event hub](event-hubs-kafka-mirror-maker-tutorial.md)
155+
- [Connect Apache Spark to an event hub](event-hubs-kafka-spark-tutorial.md)
156+
- [Connect Apache Flink to an event hub](event-hubs-kafka-flink-tutorial.md)
157+
- [Integrate Kafka Connect with an event hub](event-hubs-kafka-connect-tutorial.md)
158158
- [Explore samples on our GitHub](https://github.com/Azure/azure-event-hubs-for-kafka)

articles/event-hubs/event-hubs-kafka-connect-tutorial.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ ms.author: shvija
1414
---
1515

1616
# Integrate Apache Kafka Connect support on Azure Event Hubs (Preview)
17-
As ingestion for business needs increases, so does the requirement to ingest for various external sources and sinks. [Apache Kafka Connect](https://kafka.apache.org/documentation/#connect) provides such framework to connect and import/export data from/to any external system such as MySQL, HDFS, and file system through a Kafka cluster. This tutorial walks you through using Kafka Connect framework with Kafka-enabled Event Hubs.
17+
As ingestion for business needs increases, so does the requirement to ingest for various external sources and sinks. [Apache Kafka Connect](https://kafka.apache.org/documentation/#connect) provides such framework to connect and import/export data from/to any external system such as MySQL, HDFS, and file system through a Kafka cluster. This tutorial walks you through using Kafka Connect framework with Event Hubs.
1818

19-
This tutorial walks you through integrating Kafka Connect with a Kafka-enabled Azure event hub and deploying basic FileStreamSource and FileStreamSink connectors. This feature is currently in preview. While these connectors are not meant for production use, they demonstrate an end-to-end Kafka Connect scenario where Azure Event Hubs acts as a Kafka broker.
19+
This tutorial walks you through integrating Kafka Connect with an event hub and deploying basic FileStreamSource and FileStreamSink connectors. This feature is currently in preview. While these connectors are not meant for production use, they demonstrate an end-to-end Kafka Connect scenario where Azure Event Hubs acts as a Kafka broker.
2020

2121
> [!NOTE]
2222
> This sample is available on [GitHub](https://github.com/Azure/azure-event-hubs-for-kafka/tree/master/tutorials/connect).
@@ -159,10 +159,10 @@ To learn more about Event Hubs and Event Hubs for Kafka, see the following topic
159159

160160
- [Learn about Event Hubs](event-hubs-what-is-event-hubs.md)
161161
- [Event Hubs for Apache Kafka](event-hubs-for-kafka-ecosystem-overview.md)
162-
- [How to create Kafka enabled Event Hubs](event-hubs-create-kafka-enabled.md)
162+
- [How to create an event hub](event-hubs-create.md)
163163
- [Stream into Event Hubs from your Kafka applications](event-hubs-quickstart-kafka-enabled-event-hubs.md)
164-
- [Mirror a Kafka broker in a Kafka-enabled event hub](event-hubs-kafka-mirror-maker-tutorial.md)
165-
- [Connect Apache Spark to a Kafka-enabled event hub](event-hubs-kafka-spark-tutorial.md)
166-
- [Connect Apache Flink to a Kafka-enabled event hub](event-hubs-kafka-flink-tutorial.md)
167-
- [Connect Akka Streams to a Kafka-enabled event hub](event-hubs-kafka-akka-streams-tutorial.md)
164+
- [Mirror a Kafka broker in an event hub](event-hubs-kafka-mirror-maker-tutorial.md)
165+
- [Connect Apache Spark to an event hub](event-hubs-kafka-spark-tutorial.md)
166+
- [Connect Apache Flink to an event hub](event-hubs-kafka-flink-tutorial.md)
167+
- [Connect Akka Streams to an event hub](event-hubs-kafka-akka-streams-tutorial.md)
168168
- [Explore samples on our GitHub](https://github.com/Azure/azure-event-hubs-for-kafka)

articles/event-hubs/event-hubs-kafka-flink-tutorial.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ ms.author: shvija
1515
---
1616

1717
# Use Apache Flink with Azure Event Hubs for Apache Kafka
18-
This tutorial shows you how to connect Apache Flink to Kafka-enabled event hubs without changing your protocol clients or running your own clusters. Azure Event Hubs supports [Apache Kafka version 1.0.](https://kafka.apache.org/10/documentation.html).
18+
This tutorial shows you how to connect Apache Flink to an event hub without changing your protocol clients or running your own clusters. Azure Event Hubs supports [Apache Kafka version 1.0.](https://kafka.apache.org/10/documentation.html).
1919

20-
One of the key benefits of using Apache Kafka is the ecosystem of frameworks it can connect to. Kafka enabled Event Hubs combines the flexibility of Kafka with the scalability, consistency, and support of the Azure ecosystem.
20+
One of the key benefits of using Apache Kafka is the ecosystem of frameworks it can connect to. Event Hubs combines the flexibility of Kafka with the scalability, consistency, and support of the Azure ecosystem.
2121

2222
In this tutorial, you learn how to:
2323
> [!div class="checklist"]
@@ -45,11 +45,11 @@ To complete this tutorial, make sure you have the following prerequisites:
4545

4646
## Create an Event Hubs namespace
4747

48-
An Event Hubs namespace is required to send or receive from any Event Hubs service. See [Create Kafka Enabled Event Hubs](event-hubs-create-kafka-enabled.md) for information about getting an Event Hubs Kafka endpoint. Make sure to copy the Event Hubs connection string for later use.
48+
An Event Hubs namespace is required to send or receive from any Event Hubs service. See [Create Kafka Enabled Event Hubs](event-hubs-create.md) for information about getting an Event Hubs Kafka endpoint. Make sure to copy the Event Hubs connection string for later use.
4949

5050
## Clone the example project
5151

52-
Now that you have a Kafka-enabled Event Hubs connection string, clone the Azure Event Hubs for Kafka repository and navigate to the `flink` subfolder:
52+
Now that you have tne Event Hubs connection string, clone the Azure Event Hubs for Kafka repository and navigate to the `flink` subfolder:
5353

5454
```shell
5555
git clone https://github.com/Azure/azure-event-hubs-for-kafka.git
@@ -116,12 +116,12 @@ mvn clean package
116116
mvn exec:java -Dexec.mainClass="FlinkTestConsumer"
117117
```
118118

119-
If the Kafka-enabled event hub has events (for example, if your producer is also running), then the consumer now begins receiving events from the topic `test`.
119+
If the event hub has events (for example, if your producer is also running), then the consumer now begins receiving events from the topic `test`.
120120

121121
Check out [Flink's Kafka Connector Guide](https://ci.apache.org/projects/flink/flink-docs-stable/dev/connectors/kafka.html) for more detailed information about connecting Flink to Kafka.
122122

123123
## Next steps
124-
In this tutorial, your learned how to connect Apache Flink to Kafka-enabled event hubs without changing your protocol clients or running your own clusters. You performed the following steps as part of this tutorial:
124+
In this tutorial, your learned how to connect Apache Flink to Event Hubs without changing your protocol clients or running your own clusters. You performed the following steps as part of this tutorial:
125125

126126
> [!div class="checklist"]
127127
> * Create an Event Hubs namespace
@@ -133,10 +133,10 @@ To learn more about Event Hubs and Event Hubs for Kafka, see the following topic
133133

134134
- [Learn about Event Hubs](event-hubs-what-is-event-hubs.md)
135135
- [Event Hubs for Apache Kafka](event-hubs-for-kafka-ecosystem-overview.md)
136-
- [How to create Kafka enabled Event Hubs](event-hubs-create-kafka-enabled.md)
136+
- [How to create Kafka enabled Event Hubs](event-hubs-create.md)
137137
- [Stream into Event Hubs from your Kafka applications](event-hubs-quickstart-kafka-enabled-event-hubs.md)
138-
- [Mirror a Kafka broker in a Kafka-enabled event hub](event-hubs-kafka-mirror-maker-tutorial.md)
139-
- [Connect Apache Spark to a Kafka-enabled event hub](event-hubs-kafka-spark-tutorial.md)
140-
- [Integrate Kafka Connect with a Kafka-enabled event hub](event-hubs-kafka-connect-tutorial.md)
141-
- [Connect Akka Streams to a Kafka-enabled event hub](event-hubs-kafka-akka-streams-tutorial.md)
138+
- [Mirror a Kafka broker in an event hub](event-hubs-kafka-mirror-maker-tutorial.md)
139+
- [Connect Apache Spark to an event hub](event-hubs-kafka-spark-tutorial.md)
140+
- [Integrate Kafka Connect with an event hub](event-hubs-kafka-connect-tutorial.md)
141+
- [Connect Akka Streams to an event hub](event-hubs-kafka-akka-streams-tutorial.md)
142142
- [Explore samples on our GitHub](https://github.com/Azure/azure-event-hubs-for-kafka)

0 commit comments

Comments
 (0)