logstash-input-kafka 3.0.2 → 3.0.3

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: f3f5c3a1161ee2988ae4d6e885af3a3d958e8093
4
- data.tar.gz: a53a63e3d6f98a2f2c0e5f3ce7161748a8820dd4
3
+ metadata.gz: 15340382c64806f572f5bd3deb5ef912d4cc0f96
4
+ data.tar.gz: e573c0a1b2168d2e4fe0346e9a7269d48e8bcaa8
5
5
  SHA512:
6
- metadata.gz: 40659274e89a5ee0d8b8d2f6351e498a867165dfed0e10e5c8b0ccf43eefb6aaf375dab2d26acae076c966401476ca5f1cd4dbc77b3f189d62b33f9218ed6259
7
- data.tar.gz: 4d74702ac938b87a3f69c21ab9b0e2d4a456b3cb180028b91c25de6a28cc052e55613094ba1aaa1b01a00c852fbee22101a510b75fc3243d1239496ea95da036
6
+ metadata.gz: 2fd86eae77621259aebc77480d4e092fb3ca79e5fa573e4916bbb2492dca53cbd2966c5d82e65904677c3eea4cd98c7619a8c86cb42d1993eeea466d136f2c7f
7
+ data.tar.gz: 4c55185651161fc07d6737c15e3ffe127f2ffb4437bba9d73c49bfb9362b39548a94575e7f8d85e6c308c20ad653cda4c98654f9b4ed577dfe2e559449dbd2ef
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 3.0.3
2
+ - Revert back to not configuring log4j here in this plugin. This setup method used
3
+ will hardcode log4j setting which means you cannot configure it. Its better to add
4
+ log4j.properties in LS_HOME/bin, add it to classpath to silence warnings.
5
+ - Update auto_commit_interval_ms to default to 5000
6
+
1
7
  ## 3.0.2
2
8
  - Support for Kafka 0.9 for LS 2.x
3
9
 
@@ -45,4 +51,4 @@
45
51
  - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
46
52
  instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
47
53
  - Dependency on logstash-core update to 2.0
48
-
54
+
@@ -35,7 +35,7 @@ class LogStash::Inputs::Kafka < LogStash::Inputs::Base
35
35
  default :codec, 'plain'
36
36
 
37
37
  # The frequency in milliseconds that the consumer offsets are committed to Kafka.
38
- config :auto_commit_interval_ms, :validate => :string, :default => "10"
38
+ config :auto_commit_interval_ms, :validate => :string, :default => "5000"
39
39
  # What to do when there is no initial offset in Kafka or if an offset is out of range:
40
40
  #
41
41
  # * earliest: automatically reset the offset to the earliest offset
@@ -133,7 +133,6 @@ class LogStash::Inputs::Kafka < LogStash::Inputs::Base
133
133
 
134
134
  public
135
135
  def register
136
- LogStash::Logger.setup_log4j(@logger)
137
136
  @runner_threads = []
138
137
  end # def register
139
138
 
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-input-kafka'
4
- s.version = '3.0.2'
4
+ s.version = '3.0.3'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  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'
7
7
  s.description = "This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/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: 3.0.2
4
+ version: 3.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elasticsearch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-12 00:00:00.000000000 Z
11
+ date: 2016-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement