Skip to content

Commit 101b5bd

Browse files
author
Sreekanth Iyer (Ushta Te Consultancy Services)
committed
Replaced text Kafka 2.4 to 3.2
1 parent 71fbe4a commit 101b5bd

6 files changed

+8
-19
lines changed

articles/hdinsight-aks/flink/assign-kafka-topic-event-message-to-azure-data-lake-storage-gen2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Flink provides an Apache Kafka connector for reading data from and writing data
103103
*abfsGen2.java*
104104

105105
> [!Note]
106-
> Replace [Apache Kafka on HDInsight cluster](../../hdinsight/kafka/apache-kafka-get-started.md) bootStrapServers with your own brokers for Kafka 2.4 or 3.2
106+
> Replace [Apache Kafka on HDInsight cluster](../../hdinsight/kafka/apache-kafka-get-started.md) bootStrapServers with your own brokers for Kafka 3.2
107107
108108
``` java
109109
package contoso.example;

articles/hdinsight-aks/flink/change-data-capture-connectors-for-apache-flink.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ GO
138138
```
139139
##### Maven source code on IdeaJ
140140

141-
In the below snippet, we use Kafka 2.4.1. Based on your usage, update the version of Kafka on `<kafka.version>`.
141+
Based on your usage, update the version of Kafka on `<kafka.version>`.
142142

143143
**maven pom.xml**
144144

articles/hdinsight-aks/flink/join-stream-kafka-table-filesystem.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,6 @@ We're creating a topic called `user_events`.
3131
timestamp,
3232
```
3333

34-
**Kafka 2.4.1**
35-
```
36-
/usr/hdp/current/kafka-broker/bin/kafka-topics.sh --create --replication-factor 2 --partitions 3 --topic user_events --zookeeper zk0-contos:2181
37-
/usr/hdp/current/kafka-broker/bin/kafka-topics.sh --create --replication-factor 2 --partitions 3 --topic user_events_output --zookeeper zk0-contos:2181
38-
```
39-
4034
**Kafka 3.2.0**
4135
```
4236
/usr/hdp/current/kafka-broker/bin/kafka-topics.sh --create --replication-factor 2 --partitions 3 --topic user_events --bootstrap-server wn0-contsk:9092
@@ -84,7 +78,7 @@ In this step, we perform the following activities
8478
<flink.version>1.17.0</flink.version>
8579
<java.version>1.8</java.version>
8680
<scala.binary.version>2.12</scala.binary.version>
87-
<kafka.version>3.2.0</kafka.version> //replace with 2.4.1 if you are using HDInsight Kafka 2.4.1
81+
<kafka.version>3.2.0</kafka.version>
8882
</properties>
8983
<dependencies>
9084
<dependency>

articles/hdinsight-aks/flink/sink-kafka-to-kibana.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ For more information, refer
3434

3535
## Prerequisites
3636

37-
* [Create Flink 1.16.0 cluster](./flink-create-cluster-portal.md)
37+
* [Create Flink 1.17.0 cluster](./flink-create-cluster-portal.md)
3838
* Elasticsearch-7.13.2
3939
* Kibana-7.13.2
40-
* [HDInsight 5.0 - Kafka 2.4.1](../../hdinsight/kafka/apache-kafka-get-started.md)
40+
* [HDInsight 5.0 - Kafka 3.2.0](../../hdinsight/kafka/apache-kafka-get-started.md)
4141
* IntelliJ IDEA for development on an Azure VM which in the same Vnet
4242

4343

articles/hdinsight-aks/flink/use-apache-nifi-with-datastream-api.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,8 @@ By combining the low latency streaming features of Apache Flink and the dataflow
3131
For purposes of this demonstration, we're using a HDInsight Kafka Cluster. Let us prepare HDInsight Kafka topic for the demo.
3232

3333
> [!NOTE]
34-
> Setup a HDInsight cluster with [Apache Kafka](../../hdinsight/kafka/apache-kafka-get-started.md) and replace broker list with your own list before you get started for both Kafka 2.4 and 3.2.
34+
> Setup a HDInsight cluster with [Apache Kafka](../../hdinsight/kafka/apache-kafka-get-started.md) and replace broker list with your own list before you get started for both Kafka 3.2.
3535
36-
**Kafka 2.4.1**
37-
```
38-
/usr/hdp/current/kafka-broker/bin/kafka-topics.sh --create --replication-factor 2 --partitions 3 --topic click_events --zookeeper zk0-contsk:2181
39-
```
4036

4137
**Kafka 3.2.0**
4238
```
@@ -182,7 +178,6 @@ public class ClickSource implements SourceFunction<Event> {
182178
```
183179
**Maven pom.xml**
184180

185-
You can replace 2.4.1 with 3.2.0 in case you're using Kafka 3.2.0 on HDInsight, where applicable on the pom.xml.
186181

187182
``` xml
188183
<?xml version="1.0" encoding="UTF-8"?>
@@ -200,7 +195,7 @@ You can replace 2.4.1 with 3.2.0 in case you're using Kafka 3.2.0 on HDInsight,
200195
<flink.version>1.17.0</flink.version>
201196
<java.version>1.8</java.version>
202197
<scala.binary.version>2.12</scala.binary.version>
203-
<kafka.version>3.2.0</kafka.version> ---> Replace 2.4.1 with 3.2.0 , in case you're using HDInsight Kafka 3.2.0
198+
<kafka.version>3.2.0</kafka.version>
204199
</properties>
205200
<dependencies>
206201
<!-- https://mvnrepository.com/artifact/org.apache.flink/flink-streaming-java -->

articles/hdinsight-aks/flink/use-flink-to-sink-kafka-message-into-hbase.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ hbase:002:0>
170170
<java.version>1.8</java.version>
171171
<scala.binary.version>2.12</scala.binary.version>
172172
<hbase.version>2.4.11</hbase.version>
173-
<kafka.version>3.2.0</kafka.version> // Replace with 2.4.0 for HDInsight Kafka 2.4
173+
<kafka.version>3.2.0</kafka.version>
174174
</properties>
175175
<dependencies>
176176
<dependency>

0 commit comments

Comments
 (0)