MINOR: add 3.9.1 to system tests (#19772)
CI / build (push) Waiting to run Details

Add 3.9.1 to system tests following this release guide:

https://cwiki.apache.org/confluence/display/KAFKA/Release+Process#ReleaseProcess-Afterrelease

Reviewers: TengYao Chi <frankvicky@apache.org>
This commit is contained in:
Luke Chen 2025-05-21 15:09:00 +09:00 committed by GitHub
parent 9711caca41
commit f314497b63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 7 additions and 6 deletions

View File

@ -101,7 +101,7 @@ versions += [
kafka_36: "3.6.2", kafka_36: "3.6.2",
kafka_37: "3.7.2", kafka_37: "3.7.2",
kafka_38: "3.8.1", kafka_38: "3.8.1",
kafka_39: "3.9.0", kafka_39: "3.9.1",
kafka_40: "4.0.0", kafka_40: "4.0.0",
log4j2: "2.24.3", log4j2: "2.24.3",
// When updating lz4 make sure the compression levels in org.apache.kafka.common.record.CompressionType are still valid // When updating lz4 make sure the compression levels in org.apache.kafka.common.record.CompressionType are still valid

View File

@ -95,7 +95,7 @@ RUN mkdir -p "/opt/kafka-3.5.2" && chmod a+rw /opt/kafka-3.5.2 && curl -s "$KAFK
RUN mkdir -p "/opt/kafka-3.6.2" && chmod a+rw /opt/kafka-3.6.2 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.6.2.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.6.2" RUN mkdir -p "/opt/kafka-3.6.2" && chmod a+rw /opt/kafka-3.6.2 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.6.2.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.6.2"
RUN mkdir -p "/opt/kafka-3.7.2" && chmod a+rw /opt/kafka-3.7.2 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.7.2.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.7.2" RUN mkdir -p "/opt/kafka-3.7.2" && chmod a+rw /opt/kafka-3.7.2 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.7.2.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.7.2"
RUN mkdir -p "/opt/kafka-3.8.1" && chmod a+rw /opt/kafka-3.8.1 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.8.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.8.1" RUN mkdir -p "/opt/kafka-3.8.1" && chmod a+rw /opt/kafka-3.8.1 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.8.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.8.1"
RUN mkdir -p "/opt/kafka-3.9.0" && chmod a+rw /opt/kafka-3.9.0 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.9.0.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.9.0" RUN mkdir -p "/opt/kafka-3.9.1" && chmod a+rw /opt/kafka-3.9.1 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.9.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.9.1"
RUN mkdir -p "/opt/kafka-4.0.0" && chmod a+rw /opt/kafka-4.0.0 && curl -s "$KAFKA_MIRROR/kafka_2.13-4.0.0.tgz" | tar xz --strip-components=1 -C "/opt/kafka-4.0.0" RUN mkdir -p "/opt/kafka-4.0.0" && chmod a+rw /opt/kafka-4.0.0 && curl -s "$KAFKA_MIRROR/kafka_2.13-4.0.0.tgz" | tar xz --strip-components=1 -C "/opt/kafka-4.0.0"
@ -117,7 +117,7 @@ RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.5.2-test.jar" -o /opt/kafka-3.5.2/lib
RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.6.2-test.jar" -o /opt/kafka-3.6.2/libs/kafka-streams-3.6.2-test.jar RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.6.2-test.jar" -o /opt/kafka-3.6.2/libs/kafka-streams-3.6.2-test.jar
RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.7.2-test.jar" -o /opt/kafka-3.7.2/libs/kafka-streams-3.7.2-test.jar RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.7.2-test.jar" -o /opt/kafka-3.7.2/libs/kafka-streams-3.7.2-test.jar
RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.8.1-test.jar" -o /opt/kafka-3.8.1/libs/kafka-streams-3.8.1-test.jar RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.8.1-test.jar" -o /opt/kafka-3.8.1/libs/kafka-streams-3.8.1-test.jar
RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.9.0-test.jar" -o /opt/kafka-3.9.0/libs/kafka-streams-3.9.0-test.jar RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.9.1-test.jar" -o /opt/kafka-3.9.1/libs/kafka-streams-3.9.1-test.jar
RUN curl -s "$KAFKA_MIRROR/kafka-streams-4.0.0-test.jar" -o /opt/kafka-4.0.0/libs/kafka-streams-4.0.0-test.jar RUN curl -s "$KAFKA_MIRROR/kafka-streams-4.0.0-test.jar" -o /opt/kafka-4.0.0/libs/kafka-streams-4.0.0-test.jar
# To ensure the Kafka cluster starts successfully under JDK 17, we need to update the Zookeeper # To ensure the Kafka cluster starts successfully under JDK 17, we need to update the Zookeeper

View File

@ -216,7 +216,8 @@ LATEST_3_8 = V_3_8_1
# 3.9.x version # 3.9.x version
V_3_9_0 = KafkaVersion("3.9.0") V_3_9_0 = KafkaVersion("3.9.0")
LATEST_3_9 = V_3_9_0 V_3_9_1 = KafkaVersion("3.9.1")
LATEST_3_9 = V_3_9_1
# 4.0.x version # 4.0.x version
V_4_0_0 = KafkaVersion("4.0.0") V_4_0_0 = KafkaVersion("4.0.0")

View File

@ -148,8 +148,8 @@ get_kafka 3.7.2 2.12
chmod a+rw /opt/kafka-3.7.2 chmod a+rw /opt/kafka-3.7.2
get_kafka 3.8.1 2.12 get_kafka 3.8.1 2.12
chmod a+rw /opt/kafka-3.8.1 chmod a+rw /opt/kafka-3.8.1
get_kafka 3.9.0 2.12 get_kafka 3.9.1 2.12
chmod a+rw /opt/kafka-3.9.0 chmod a+rw /opt/kafka-3.9.1
get_kafka 4.0.0 2.13 get_kafka 4.0.0 2.13
chmod a+rw /opt/kafka-4.0.0 chmod a+rw /opt/kafka-4.0.0