logstash-input-kafka 3.0.2 → 3.0.3
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 +7 -1
- data/lib/logstash/inputs/kafka.rb +1 -2
- 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: 15340382c64806f572f5bd3deb5ef912d4cc0f96
|
4
|
+
data.tar.gz: e573c0a1b2168d2e4fe0346e9a7269d48e8bcaa8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 => "
|
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.
|
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.
|
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-
|
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
|