logstash-input-kafka 6.0.0 → 6.0.1

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
2
  SHA1:
3
- metadata.gz: 2f20d67ea46283bd3aaf21569aab83e631c19921
4
- data.tar.gz: e3da91a864987986ceef9acc22080f13a2845399
3
+ metadata.gz: 1c54ee25acbf97f706e6a59a5d946a81ceb0443f
4
+ data.tar.gz: c9f1d094e875c1afabd550c7b5e919ad4360e276
5
5
  SHA512:
6
- metadata.gz: c8ddadc5b3151ee32602c2fed08698bf58459ab19590e6fe0c5a775ea74087649239870ed2aee591a6db1a938b675d5ab9cfd1f2a8bcf4cceeea48e612227f53
7
- data.tar.gz: eb73a4f54c954c9b522a15c61ea6930ece83a3854a63c1cb3d82de7c08254a411795534a98ebc662ef0d0b73e21908c9d7adf48c0a95b25329b4b4eb18089de3
6
+ metadata.gz: 28bd504868f79e74bfb24913b701220a3a17cc86fee147fd59120ab58d10d8dbccac413ee987b4e6a61158871a5c7490c2c520a4314b21ee01ec71d8a3fdbfeb
7
+ data.tar.gz: ebc024bc32719ce6796107ac87f8eb84c7a16a0efb0d6f91c4d59ef638677e22be9fa1e851dd473108ce371df785a9b6f91f2dcb94edf9812c0c3042e0a685dd
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 6.0.1
2
+ - default `poll_timeout_ms` to 100ms
3
+
1
4
  ## 6.0.0
2
5
  - Breaking: Support for Kafka 0.10.1.0. Only supports brokers 0.10.1.x or later.
3
6
 
data/README.md CHANGED
@@ -15,8 +15,8 @@ Here's a table that describes the compatibility matrix for Kafka Broker support.
15
15
  | 0.8 | 2.0 - 2.x | < 3.0.0 | <3.0.0 | Legacy, 0.8 is still popular |
16
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
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 | 2.4, 5.0 | 5.0.0 | 5.0.0 | Track latest Kafka release. Not compatible with 0.9 broker |
19
-
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
20
  ## Documentation
21
21
 
22
22
  https://www.elastic.co/guide/en/logstash/current/plugins-inputs-kafka.html
@@ -16,7 +16,8 @@ require 'logstash-input-kafka_jars.rb'
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 |Basic Auth, SSL |Works with the old Ruby Event API (`event['product']['price'] = 10`)
18
18
  # |0.9 |2.4.0 - 5.0.x | 4.x.x |Basic Auth, SSL |Works with the new getter/setter APIs (`event.set('[product][price]', 10)`)
19
- # |0.10 |2.4.0 - 5.0.x | 5.x.x |Basic Auth, SSL |Not compatible with the 0.9 broker
19
+ # |0.10.0.x |2.4.0 - 5.0.x | 5.x.x |Basic Auth, SSL |Not compatible with the <= 0.9 broker
20
+ # |0.10.1.x |2.4.0 - 5.0.x | 6.x.x |Basic Auth, SSL |Not compatible with <= 0.10.0.x broker
20
21
  # |==========================================================
21
22
  #
22
23
  # NOTE: We recommended that you use matching Kafka client and broker versions. During upgrades, you should
@@ -143,7 +144,7 @@ class LogStash::Inputs::Kafka < LogStash::Inputs::Base
143
144
  # The topics configuration will be ignored when using this configuration.
144
145
  config :topics_pattern, :validate => :string
145
146
  # Time kafka consumer will wait to receive new messages from topics
146
- config :poll_timeout_ms, :validate => :number
147
+ config :poll_timeout_ms, :validate => :number, :default => 100
147
148
  # Enable SSL/TLS secured communication to Kafka broker.
148
149
  config :ssl, :validate => :boolean, :default => false
149
150
  # The JKS truststore path to validate the Kafka broker's certificate.
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-kafka'
3
- s.version = '6.0.0'
3
+ s.version = '6.0.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.0.0
4
+ version: 6.0.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-11-02 00:00:00.000000000 Z
11
+ date: 2016-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement