logstash-input-kafka 6.2.0 → 6.2.1
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/README.md +0 -11
- data/lib/logstash/inputs/kafka.rb +3 -8
- data/logstash-input-kafka.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e7bf49f8e5eab4e42ffc3de860b61438ad4a55a6
|
4
|
+
data.tar.gz: 8cbb97548c549292b66eef4d29dc6f3a8e90ffd2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c4366a5154a5df786424393676f0a943fa8510a64baaf59ec0bce1c0f6613b83b0e1655b3f441908340746ea1f191ebc6250643328652f7dc4d326d4e417d79
|
7
|
+
data.tar.gz: d9e36735403a992349e9c8289a307978a90e00281497f28302ec22f18378f5e02b6455ada711298b1556bc3a504242c307a6253a7c25f7477c123487f17f9d2b
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
## 6.2.1
|
2
|
+
- Docs: Clarify compatibility matrix and remove it from the changelog to avoid duplication.
|
3
|
+
|
1
4
|
## 6.2.0
|
2
5
|
- Expose config `max_poll_interval_ms` to allow consumer to send heartbeats from a background thread
|
3
6
|
- Expose config `fetch_max_bytes` to control client's fetch response size limit
|
data/README.md
CHANGED
@@ -6,17 +6,6 @@ This is a plugin for [Logstash](https://github.com/elastic/logstash).
|
|
6
6
|
|
7
7
|
It is fully free and fully open source. The license is Apache 2.0, meaning you are pretty much free to use it however you want in whatever way.
|
8
8
|
|
9
|
-
## Kafka Compatibility
|
10
|
-
|
11
|
-
Here's a table that describes the compatibility matrix for Kafka Broker support. Please remember that it is good advice to upgrade brokers before consumers/producers since brokers target backwards compatibility. The 0.9 broker will work with both the 0.8 consumer and 0.9 consumer APIs but not the other way around.
|
12
|
-
|
13
|
-
| Kafka Broker Version | Logstash Version | Input Plugin | Output Plugin | Why? |
|
14
|
-
|:---------------:|:------------------:|:--------------:|:---------------:|:------|
|
15
|
-
| 0.8 | 2.0 - 2.x | < 3.0.0 | <3.0.0 | Legacy, 0.8 is still popular |
|
16
|
-
| 0.9 | 2.0 - 2.3.x | 3.0.0 | 3.0.0 | Intermediate release before 0.10 that works with old Ruby Event API `[]` |
|
17
|
-
| 0.9 | 2.4, 5.0 | 4.0.0 | 4.0.0 | Intermediate release before 0.10 with new get/set API |
|
18
|
-
| 0.10.0.x | 2.4, 5.0 | 5.0.0 | 5.0.0 | Track latest Kafka release. Not compatible with 0.9 broker |
|
19
|
-
| 0.10.1.x | 2.4, 5.0 | 6.0.0 | X | Track latest Kafka release. Not compatible with < 0.10.0.x broker |
|
20
9
|
## Documentation
|
21
10
|
|
22
11
|
https://www.elastic.co/guide/en/logstash/current/plugins-inputs-kafka.html
|
@@ -15,9 +15,9 @@ require 'logstash-input-kafka_jars.rb'
|
|
15
15
|
# |Kafka Client Version |Logstash Version |Plugin Version |Security Features |Why?
|
16
16
|
# |0.8 |2.0.0 - 2.x.x |<3.0.0 | |Legacy, 0.8 is still popular
|
17
17
|
# |0.9 |2.0.0 - 2.3.x | 3.x.x |SSL |Works with the old Ruby Event API (`event['product']['price'] = 10`)
|
18
|
-
# |0.9 |2.4.
|
19
|
-
# |0.10.0.x |2.4.
|
20
|
-
# |0.10.1.x |2.4.
|
18
|
+
# |0.9 |2.4.x - 5.x.x | 4.x.x |SSL |Works with the new getter/setter APIs (`event.set('[product][price]', 10)`)
|
19
|
+
# |0.10.0.x |2.4.x - 5.x.x | 5.x.x |SSL |Not compatible with the <= 0.9 broker
|
20
|
+
# |0.10.1.x |2.4.x - 5.x.x | 6.x.x |SSL |Not compatible with <= 0.10.0.x broker
|
21
21
|
# |==========================================================
|
22
22
|
#
|
23
23
|
# NOTE: We recommended that you use matching Kafka client and broker versions. During upgrades, you should
|
@@ -211,11 +211,6 @@ class LogStash::Inputs::Kafka < LogStash::Inputs::Base
|
|
211
211
|
|
212
212
|
public
|
213
213
|
def register
|
214
|
-
# Logstash 2.4
|
215
|
-
if defined?(LogStash::Logger) && LogStash::Logger.respond_to?(:setup_log4j)
|
216
|
-
LogStash::Logger.setup_log4j(@logger)
|
217
|
-
end
|
218
|
-
|
219
214
|
@runner_threads = []
|
220
215
|
end # def register
|
221
216
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'logstash-input-kafka'
|
3
|
-
s.version = '6.2.
|
3
|
+
s.version = '6.2.1'
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
5
5
|
s.summary = 'This input will read events from a Kafka topic. It uses the high level consumer API provided by Kafka to read messages from the broker'
|
6
6
|
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-input-kafka
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.2.
|
4
|
+
version: 6.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elasticsearch
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-12-
|
11
|
+
date: 2016-12-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|