logstash-input-kafka 3.0.0.beta7 → 3.0.2

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: c018fb8c8d5054d09af69c8c5cd0ba65a80c75aa
4
- data.tar.gz: 9d761c8c2000a968f59e4f45b98bdfd193614b0c
3
+ metadata.gz: f3f5c3a1161ee2988ae4d6e885af3a3d958e8093
4
+ data.tar.gz: a53a63e3d6f98a2f2c0e5f3ce7161748a8820dd4
5
5
  SHA512:
6
- metadata.gz: a15541b34a89c0e3c367dfb1c9a954fef97e4c6680299664afb0434ce023ebd1b430609f0f9d79d85215a4d77938866c3d222c7ab94f535d21129b97e2e7f1ad
7
- data.tar.gz: d5d526db498acd6181af7ede6b45db24a08a77c90279a7fda56b143b0d1992c588c34a4305c93167d71291fcf33d01ab9d0b7e7366ee31b0d817c3a441b7efc1
6
+ metadata.gz: 40659274e89a5ee0d8b8d2f6351e498a867165dfed0e10e5c8b0ccf43eefb6aaf375dab2d26acae076c966401476ca5f1cd4dbc77b3f189d62b33f9218ed6259
7
+ data.tar.gz: 4d74702ac938b87a3f69c21ab9b0e2d4a456b3cb180028b91c25de6a28cc052e55613094ba1aaa1b01a00c852fbee22101a510b75fc3243d1239496ea95da036
@@ -1,29 +1,48 @@
1
- # 3.0.0.beta7
1
+ ## 3.0.2
2
+ - Support for Kafka 0.9 for LS 2.x
3
+
4
+ ## 3.0.0.beta7
2
5
  - Fix Log4j warnings by setting up the logger
3
6
 
4
- # 3.0.0.beta5 and 3.0.0.beta6
7
+ ## 3.0.0.beta5 and 3.0.0.beta6
5
8
  - Internal: Use jar dependency
6
9
  - Fixed issue with snappy compression
7
10
 
8
- # 3.0.0.beta3 and 3.0.0.beta4
11
+ ## 3.0.0.beta3 and 3.0.0.beta4
9
12
  - Internal: Update gemspec dependency
10
13
 
11
- # 3.0.0.beta2
14
+ ## 3.0.0.beta2
12
15
  - internal: Use jar dependencies library instead of manually downloading jars
13
16
  - Fixes "java.lang.ClassNotFoundException: org.xerial.snappy.SnappyOutputStream" issue (#50)
14
17
 
15
- # 3.0.0.beta2
18
+ ## 3.0.0.beta2
16
19
  - Added SSL/TLS connection support to Kafka
17
20
  - Breaking: Changed default codec to plain instead of SSL. Json codec is really slow when used
18
21
  with inputs because inputs by default are single threaded. This makes it a bad
19
22
  first user experience. Plain codec is a much better default.
20
23
 
21
- # 3.0.0.beta1
24
+ ## 3.0.0.beta1
22
25
  - Refactor to use new Java based consumer, bypassing jruby-kafka
23
26
  - Breaking: Change configuration to match Kafka's configuration. This version is not backward compatible
24
27
 
28
+ ## 2.0.7
29
+ - Update to jruby-kafka 1.6 which includes Kafka 0.8.2.2 enabling LZ4 decompression.
30
+
31
+ ## 2.0.6
32
+ - Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
33
+
34
+ ## 2.0.5
35
+ - New dependency requirements for logstash-core for the 5.0 release
36
+
37
+ ## 2.0.4
38
+ - Fix safe shutdown while plugin waits on Kafka for new events
39
+ - Expose auto_commit_interval_ms to control offset commit frequency
40
+
41
+ ## 2.0.3
42
+ - Fix infinite loop when no new messages are found in Kafka
43
+
25
44
  ## 2.0.0
26
45
  - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
27
46
  instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
28
47
  - Dependency on logstash-core update to 2.0
29
-
48
+
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012–2015 Elasticsearch <http://www.elastic.co>
1
+ Copyright (c) 2012–2016 Elasticsearch <http://www.elastic.co>
2
2
 
3
3
  Licensed under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License.
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # Logstash Plugin
2
2
 
3
- [![Build
4
- Status](http://build-eu-00.elastic.co/view/LS%20Plugins/view/LS%20Inputs/job/logstash-plugin-input-kafka-unit/badge/icon)](http://build-eu-00.elastic.co/view/LS%20Plugins/view/LS%20Inputs/job/logstash-plugin-input-kafka-unit/)
3
+ [![Travis Build Status](https://travis-ci.org/logstash-plugins/logstash-input-kafka.svg)](https://travis-ci.org/logstash-plugins/logstash-input-kafka)
5
4
 
6
5
  This is a plugin for [Logstash](https://github.com/elastic/logstash).
7
6
 
@@ -56,7 +55,12 @@ gem "logstash-filter-awesome", :path => "/your/local/logstash-filter-awesome"
56
55
  ```
57
56
  - Install plugin
58
57
  ```sh
58
+ # Logstash 2.3 and higher
59
+ bin/logstash-plugin install --no-verify
60
+
61
+ # Prior to Logstash 2.3
59
62
  bin/plugin install --no-verify
63
+
60
64
  ```
61
65
  - Run Logstash with your plugin
62
66
  ```sh
@@ -74,7 +78,12 @@ gem build logstash-filter-awesome.gemspec
74
78
  ```
75
79
  - Install the plugin from the Logstash home
76
80
  ```sh
77
- bin/plugin install /your/local/plugin/logstash-filter-awesome.gem
81
+ # Logstash 2.3 and higher
82
+ bin/logstash-plugin install --no-verify
83
+
84
+ # Prior to Logstash 2.3
85
+ bin/plugin install --no-verify
86
+
78
87
  ```
79
88
  - Start Logstash and proceed to test the plugin
80
89
 
@@ -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.0.beta7'
4
+ s.version = '3.0.2'
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"
@@ -31,4 +31,3 @@ Gem::Specification.new do |s|
31
31
  s.add_runtime_dependency 'stud', '>= 0.0.22', '< 0.1.0'
32
32
  s.add_development_dependency 'logstash-devutils'
33
33
  end
34
-
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.0.beta7
4
+ version: 3.0.2
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-02 00:00:00.000000000 Z
11
+ date: 2016-05-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -141,9 +141,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
141
141
  version: '0'
142
142
  required_rubygems_version: !ruby/object:Gem::Requirement
143
143
  requirements:
144
- - - '>'
144
+ - - '>='
145
145
  - !ruby/object:Gem::Version
146
- version: 1.3.1
146
+ version: '0'
147
147
  requirements:
148
148
  - jar 'org.apache.kafka:kafka-clients', '0.9.0.1'
149
149
  - jar 'org.slf4j:slf4j-log4j12', '1.7.13'