-
Notifications
You must be signed in to change notification settings - Fork 65
Updates Kafka client from 2.8.1 to 3.3.1 #130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
11211eb
afe3f1c
1bb9d3f
10b3ac5
6437ed2
1ea9f31
b2568f0
f4de51c
6448983
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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') |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -92,7 +92,7 @@ class LogStash::Inputs::Kafka < LogStash::Inputs::Base | |
| # IP addresses for a hostname, they will all be attempted to connect to before failing the | ||
| # connection. If the value is `resolve_canonical_bootstrap_servers_only` each entry will be | ||
| # resolved and expanded into a list of canonical names. | ||
| config :client_dns_lookup, :validate => ["default", "use_all_dns_ips", "resolve_canonical_bootstrap_servers_only"], :default => "default" | ||
| config :client_dns_lookup, :validate => ["use_all_dns_ips", "resolve_canonical_bootstrap_servers_only"], :default => "use_all_dns_ips" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What did By not allowing the setting of
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I agree with you on the breaking change. Given the explanation in previous comment do you think that maybe is better if we implicitly remap
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think that is reasonable - we should add a note in the docs and the release notes to explicitly state the change, and they are changing the value of
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Applied with commit b2568f0, so no anymore breaking change if the user uses
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @robbavey I've removed the breaking change on the removal of |
||
| # The id string to pass to the server when making requests. The purpose of this | ||
| # is to be able to track the source of requests beyond just ip/port by allowing | ||
| # a logical application name to be included. | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.