-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates Kafka client from 2.8.1 to 3.3.1 (#130)
Kafka 3.3.1 correspond to Confluent Platform 7.3.0. This PR updates the client library and, due to the removal of zookeeper flag in launching integration Kafka instance, update also the bash scripts used in integration testing. The update of the Schema Registry forces the dependency on Logstash 8.3 because it's the first that ships Jackson 2.13.3 which is strictly required during the instantiation of the client. Co-authored-by: Karen Metts <[email protected]>
- Loading branch information
Showing
16 changed files
with
104 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
import: | ||
- logstash-plugins/.ci:travis/[email protected] | ||
- logstash-plugins/.ci:travis/[email protected] | ||
- logstash-plugins/.ci:travis/[email protected] | ||
|
||
env: | ||
jobs: | ||
# lock on version 8.x because use of Jackson 2.13.3 available from 8.3.0 | ||
- ELASTIC_STACK_VERSION=8.x DOCKER_ENV=dockerjdk17.env | ||
- SNAPSHOT=true ELASTIC_STACK_VERSION=8.x DOCKER_ENV=dockerjdk17.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
# AUTOGENERATED BY THE GRADLE SCRIPT. DO NOT EDIT. | ||
|
||
require 'jar_dependencies' | ||
require_jar('io.confluent', 'kafka-avro-serializer', '6.2.2') | ||
require_jar('io.confluent', 'kafka-schema-serializer', '6.2.2') | ||
require_jar('io.confluent', 'common-config', '6.2.2') | ||
require_jar('io.confluent', 'kafka-avro-serializer', '7.3.0') | ||
require_jar('io.confluent', 'kafka-schema-serializer', '7.3.0') | ||
require_jar('io.confluent', 'common-config', '7.3.0') | ||
require_jar('org.apache.avro', 'avro', '1.11.0') | ||
require_jar('io.confluent', 'kafka-schema-registry-client', '6.2.2') | ||
require_jar('org.apache.kafka', 'kafka_2.12', '2.8.1') | ||
require_jar('io.confluent', 'common-utils', '6.2.2') | ||
require_jar('io.confluent', 'kafka-schema-registry-client', '7.3.0') | ||
require_jar('org.apache.kafka', 'kafka_2.12', '3.3.1') | ||
require_jar('io.confluent', 'common-utils', '7.3.0') | ||
require_jar('javax.ws.rs', 'javax.ws.rs-api', '2.1.1') | ||
require_jar('org.glassfish.jersey.core', 'jersey-common', '2.33') | ||
require_jar('org.apache.kafka', 'kafka-clients', '2.8.1') | ||
require_jar('org.apache.kafka', 'kafka-clients', '3.3.1') | ||
require_jar('com.github.luben', 'zstd-jni', '1.5.2-2') | ||
require_jar('org.slf4j', 'slf4j-api', '1.7.36') | ||
require_jar('org.lz4', 'lz4-java', '1.7.1') | ||
require_jar('org.lz4', 'lz4-java', '1.8.0') | ||
require_jar('org.xerial.snappy', 'snappy-java', '1.1.8.4') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters