logstash-integration-kafka 10.8.0-java → 10.8.1-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/docs/input-kafka.asciidoc +0 -1
- data/logstash-integration-kafka.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ff8065a6958598d8e33ecd2f78f27d7ec2c0ce1334516966d41a4426d437a4bb
|
|
4
|
+
data.tar.gz: f5a04ae25fc6394751fd63ff0c76171db82b7fccdd9962d35c94c06f8b516c39
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d6a2630bb76e853e185c02933fe065be84e6d0f863e255e611e67b9de772b5661d09cf74fb8ba0e1df035e2742a9fbf73a3b00f2bb87801414e65d5043c9491c
|
|
7
|
+
data.tar.gz: e6ff413abd74c78f463d95f7c476fdecc2005cee804f426e56056e66300a785cf0789f73b5aa1d5aed4966d42a34a007b52361744612ecb5420891ff493c0df0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 10.8.1
|
|
2
|
+
- [DOC] Removed a setting recommendation that is no longer applicable for Kafka 2.0+ [#99](https://github.com/logstash-plugins/logstash-integration-kafka/pull/99)
|
|
3
|
+
|
|
1
4
|
## 10.8.0
|
|
2
5
|
- Added config setting to enable schema registry validation to be skipped when an authentication scheme unsupported
|
|
3
6
|
by the validator is used [#97](https://github.com/logstash-plugins/logstash-integration-kafka/pull/97)
|
data/docs/input-kafka.asciidoc
CHANGED
|
@@ -415,7 +415,6 @@ The maximum delay between invocations of poll() when using consumer group manage
|
|
|
415
415
|
an upper bound on the amount of time that the consumer can be idle before fetching more records.
|
|
416
416
|
If poll() is not called before expiration of this timeout, then the consumer is considered failed and
|
|
417
417
|
the group will rebalance in order to reassign the partitions to another member.
|
|
418
|
-
The value of the configuration `request_timeout_ms` must always be larger than `max_poll_interval_ms`. ???
|
|
419
418
|
|
|
420
419
|
[id="plugins-{type}s-{plugin}-max_poll_records"]
|
|
421
420
|
===== `max_poll_records`
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-integration-kafka'
|
|
3
|
-
s.version = '10.8.
|
|
3
|
+
s.version = '10.8.1'
|
|
4
4
|
s.licenses = ['Apache-2.0']
|
|
5
5
|
s.summary = "Integration with Kafka - input and output plugins"
|
|
6
6
|
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline "+
|