logstash-input-kafka 8.0.2 → 8.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 570aa153937558beff7391480e38de644df51ac7
4
- data.tar.gz: 48218ec25bb128839ff0f8289a067114983e4b9f
2
+ SHA256:
3
+ metadata.gz: 21c0a223726a9a316b759cdb1c12f25af264f0beafcd613ac764941c266beb40
4
+ data.tar.gz: 23f14d19e70c7030cb4da8dff71c5baa0a3fc33bdba3a13607d81d35c81e4049
5
5
  SHA512:
6
- metadata.gz: c8f64741418ff71f52ec6d243d2a24389026f09fb893949dc298e962913f891f09da7f5797f172e2f444071071d67e81f905c6dadbaf485cd39d8c2f26e623c3
7
- data.tar.gz: 166c6f4c793b4f08bc4c52b69584ea9017ade165e27911f41f93d25550c23915fe2710161b62ecb7b73dff1fb09a87ffe4ebadac6f5255afcfe5e1e6b1598a6c
6
+ metadata.gz: 1b6b1211ccd441a4d5f3337a264863a0d5ad4864efdd6b7c78074d648c69a6893e121f31ccbd2a0046d9a388631e80e0bfa8c415baa4b23c5caa1ebe9c0c0e00
7
+ data.tar.gz: 455714cc7e60d0ab0dc1108c83b3f1230d7ca682c481cf5e80b995edfb24f5ab537883fc60c7da15edab5ad9d30fd9ca475a389579536550d679fad466824323
@@ -1,3 +1,9 @@
1
+ ## 8.0.4
2
+ - Upgrade Kafka client to version 1.0.0
3
+
4
+ ## 8.0.3
5
+ - Update gemspec summary
6
+
1
7
  ## 8.0.2
2
8
  - Fix some documentation issues
3
9
 
@@ -20,26 +20,11 @@ include::{include_path}/plugin_header.asciidoc[]
20
20
 
21
21
  ==== Description
22
22
 
23
- This input will read events from a Kafka topic. It uses the 0.10 version of
24
- the consumer API provided by Kafka to read messages from the broker.
25
-
26
- Here's a compatibility matrix that shows the Kafka client versions that are compatible with each combination
27
- of Logstash and the Kafka input plugin:
28
-
29
- [options="header"]
30
- |==========================================================
31
- |Kafka Client Version |Logstash Version |Plugin Version |Why?
32
- |0.8 |2.0.0 - 2.x.x |<3.0.0 |Legacy, 0.8 is still popular
33
- |0.9 |2.0.0 - 2.3.x | 3.x.x |Works with the old Ruby Event API (`event['product']['price'] = 10`)
34
- |0.9 |2.4.x - 5.x.x | 4.x.x |Works with the new getter/setter APIs (`event.set('[product][price]', 10)`)
35
- |0.10.0.x |2.4.x - 5.x.x | 5.x.x |Not compatible with the <= 0.9 broker
36
- |0.10.1.x |2.4.x - 5.x.x | 6.x.x |
37
- |0.11.0.0 |2.4.x - 5.x.x | 6.x.x |Not compatible with the <= 0.9 broker
38
- |==========================================================
39
-
40
- NOTE: We recommended that you use matching Kafka client and broker versions. During upgrades, you should
41
- upgrade brokers before clients because brokers target backwards compatibility. For example, the 0.9 broker
42
- is compatible with both the 0.8 consumer and 0.9 consumer APIs, but not the other way around.
23
+ This input will read events from a Kafka topic.
24
+
25
+ This plugin uses Kafka Client 1.0.0. For broker compatibility, see the official https://cwiki.apache.org/confluence/display/KAFKA/Compatibility+Matrix[Kafka compatibility reference].
26
+
27
+ If you're using a plugin version that was released after {version}, see the https://www.elastic.co/guide/en/logstash/master/plugins-inputs-kafka.html[latest plugin documentation] for updated information about Kafka compatibility.
43
28
 
44
29
  This input supports connecting to Kafka over:
45
30
 
@@ -1,8 +1,8 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-kafka'
3
- s.version = '8.0.2'
3
+ s.version = '8.0.4'
4
4
  s.licenses = ['Apache License (2.0)']
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'
5
+ s.summary = "Reads events from a Kafka topic"
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"
7
7
  s.authors = ['Elasticsearch']
8
8
  s.email = 'info@elastic.co'
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
18
18
  # Special flag to let us know this is actually a logstash plugin
19
19
  s.metadata = { 'logstash_plugin' => 'true', 'logstash_group' => 'input'}
20
20
 
21
- s.requirements << "jar 'org.apache.kafka:kafka-clients', '0.11.0.0'"
21
+ s.requirements << "jar 'org.apache.kafka:kafka-clients', '1.0.0'"
22
22
  s.requirements << "jar 'org.apache.logging.log4j:log4j-slf4j-impl', '2.8.2'"
23
23
 
24
24
  s.add_development_dependency 'jar-dependencies', '~> 0.3.2'
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: 8.0.2
4
+ version: 8.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elasticsearch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-08-15 00:00:00.000000000 Z
11
+ date: 2018-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -120,7 +120,9 @@ dependencies:
120
120
  - - ">="
121
121
  - !ruby/object:Gem::Version
122
122
  version: '0'
123
- 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
123
+ description: This gem is a Logstash plugin required to be installed on top of the
124
+ Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This
125
+ gem is not a stand-alone program
124
126
  email: info@elastic.co
125
127
  executables: []
126
128
  extensions: []
@@ -136,21 +138,21 @@ files:
136
138
  - docs/index.asciidoc
137
139
  - lib/logstash-input-kafka_jars.rb
138
140
  - lib/logstash/inputs/kafka.rb
139
- - lib/net/jpountz/lz4/lz4/1.3.0/lz4-1.3.0.jar
140
- - lib/org/apache/kafka/kafka-clients/0.11.0.0/kafka-clients-0.11.0.0.jar
141
+ - lib/org/apache/kafka/kafka-clients/1.0.0/kafka-clients-1.0.0.jar
141
142
  - lib/org/apache/logging/log4j/log4j-api/2.8.2/log4j-api-2.8.2.jar
142
143
  - lib/org/apache/logging/log4j/log4j-slf4j-impl/2.8.2/log4j-slf4j-impl-2.8.2.jar
144
+ - lib/org/lz4/lz4-java/1.4/lz4-java-1.4.jar
143
145
  - lib/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
144
- - lib/org/xerial/snappy/snappy-java/1.1.2.6/snappy-java-1.1.2.6.jar
146
+ - lib/org/xerial/snappy/snappy-java/1.1.4/snappy-java-1.1.4.jar
145
147
  - logstash-input-kafka.gemspec
146
148
  - spec/integration/inputs/kafka_spec.rb
147
149
  - spec/unit/inputs/kafka_spec.rb
148
- - vendor/jar-dependencies/runtime-jars/kafka-clients-0.11.0.0.jar
150
+ - vendor/jar-dependencies/runtime-jars/kafka-clients-1.0.0.jar
149
151
  - vendor/jar-dependencies/runtime-jars/log4j-api-2.8.2.jar
150
152
  - vendor/jar-dependencies/runtime-jars/log4j-slf4j-impl-2.8.2.jar
151
- - vendor/jar-dependencies/runtime-jars/lz4-1.3.0.jar
153
+ - vendor/jar-dependencies/runtime-jars/lz4-java-1.4.jar
152
154
  - vendor/jar-dependencies/runtime-jars/slf4j-api-1.7.25.jar
153
- - vendor/jar-dependencies/runtime-jars/snappy-java-1.1.2.6.jar
155
+ - vendor/jar-dependencies/runtime-jars/snappy-java-1.1.4.jar
154
156
  homepage: http://www.elastic.co/guide/en/logstash/current/index.html
155
157
  licenses:
156
158
  - Apache License (2.0)
@@ -172,13 +174,13 @@ required_rubygems_version: !ruby/object:Gem::Requirement
172
174
  - !ruby/object:Gem::Version
173
175
  version: '0'
174
176
  requirements:
175
- - jar 'org.apache.kafka:kafka-clients', '0.11.0.0'
177
+ - jar 'org.apache.kafka:kafka-clients', '1.0.0'
176
178
  - jar 'org.apache.logging.log4j:log4j-slf4j-impl', '2.8.2'
177
179
  rubyforge_project:
178
- rubygems_version: 2.4.8
180
+ rubygems_version: 2.6.13
179
181
  signing_key:
180
182
  specification_version: 4
181
- 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
183
+ summary: Reads events from a Kafka topic
182
184
  test_files:
183
185
  - spec/integration/inputs/kafka_spec.rb
184
186
  - spec/unit/inputs/kafka_spec.rb