Skip to content

Commit 1d7fc40

Browse files
authored
added support to Kafka 3.9 (#41)
1 parent b92408f commit 1d7fc40

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
default: 'single'
112112
kafka-version:
113113
type: 'string'
114-
default: '3.8'
114+
default: '3.9'
115115
environment:
116116
STARTER_MODE: <<parameters.topology>>
117117
DOCKER_IMAGE: <<parameters.docker-img>>
@@ -284,6 +284,7 @@ workflows:
284284
jdk:
285285
- 'j11'
286286
kafka-version:
287+
- '3.9'
287288
- '3.8'
288289
- '3.7'
289290
- '3.6'

demo/docker-compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "2"
22

33
services:
44
kafka-1:
5-
image: docker.io/bitnami/kafka:3.8
5+
image: docker.io/bitnami/kafka:3.9
66
ports:
77
- '19092:19092'
88
environment:
@@ -19,7 +19,7 @@ services:
1919
KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT,CONTROLLER:PLAINTEXT
2020

2121
kafka-2:
22-
image: docker.io/bitnami/kafka:3.8
22+
image: docker.io/bitnami/kafka:3.9
2323
ports:
2424
- '29092:29092'
2525
environment:
@@ -36,7 +36,7 @@ services:
3636
KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT,CONTROLLER:PLAINTEXT
3737

3838
kafka-3:
39-
image: docker.io/bitnami/kafka:3.8
39+
image: docker.io/bitnami/kafka:3.9
4040
ports:
4141
- '39092:39092'
4242
environment:
@@ -53,7 +53,7 @@ services:
5353
KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT,CONTROLLER:PLAINTEXT
5454

5555
kafka-connect-1:
56-
image: docker.io/bitnami/kafka:3.8
56+
image: docker.io/bitnami/kafka:3.9
5757
depends_on:
5858
- kafka-1
5959
- kafka-2
@@ -68,7 +68,7 @@ services:
6868
command: /opt/bitnami/kafka/bin/connect-distributed.sh /tmp/connect-distributed-1.properties
6969

7070
kafka-connect-2:
71-
image: docker.io/bitnami/kafka:3.8
71+
image: docker.io/bitnami/kafka:3.9
7272
depends_on:
7373
- kafka-1
7474
- kafka-2

docker/start_kafka_zk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ KAFKA_VERSION=${KAFKA_VERSION:=latest}
77
DOCKER_IMAGE=docker.io/bitnami/kafka:$KAFKA_VERSION
88
docker pull $DOCKER_IMAGE
99

10-
ZK_DOCKER_IMAGE=docker.io/bitnami/zookeeper:3.8
10+
ZK_DOCKER_IMAGE=docker.io/bitnami/zookeeper:3.9
1111
docker pull $ZK_DOCKER_IMAGE
1212

1313
docker run -d \

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<maven.compiler.source>8</maven.compiler.source>
6161
<maven.compiler.target>8</maven.compiler.target>
6262
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
63-
<kafka.version>3.8.0</kafka.version>
63+
<kafka.version>3.9.0</kafka.version>
6464
<confluent.version>7.6.1</confluent.version>
6565
<arangodb.version>7.7.1</arangodb.version>
6666
<jackson.version>2.16.2</jackson.version>

0 commit comments

Comments
 (0)