fluent-plugin-kafka 0.7.3 → 0.7.4
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 +4 -0
- data/README.md +4 -0
- data/fluent-plugin-kafka.gemspec +1 -1
- data/lib/fluent/plugin/out_kafka2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5b7ae4796c748284d5a1efd2a62d0ecef957c0702f95e723580bc68ea1946dac
|
|
4
|
+
data.tar.gz: 1bb1d0a8f655cc9ccf17c4c7d9e83120cfa74dbfd53b819d8e2a5531eaf7b9b4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3b2ce707bcb35fe3bb965adcf9af540f5e31f84777180e48796accd21c5afc913d578a7560b9ee464759347178b7fd9b00840a6b85fc705f907c3da6031ea710
|
|
7
|
+
data.tar.gz: 9f5ac4de5e89c6a7fc288acacd50a2aaa331bc77c9dca92b745a30383f864eb483a3ac41509adb00a3a39bd99742ad520d02a1e1adabd709aed1febf504af3d8
|
data/ChangeLog
CHANGED
data/README.md
CHANGED
|
@@ -197,6 +197,10 @@ On Ubuntu, need development packages and snappy library.
|
|
|
197
197
|
|
|
198
198
|
$ sudo apt-get install build-essential autoconf automake libtool libsnappy-dev
|
|
199
199
|
|
|
200
|
+
On CentOS 7 installation is also necessary.
|
|
201
|
+
|
|
202
|
+
$ sudo yum install gcc autoconf automake libtool snappy-devel
|
|
203
|
+
|
|
200
204
|
#### Load balancing
|
|
201
205
|
|
|
202
206
|
Messages will be assigned a partition at random as default by ruby-kafka, but messages with the same partition key will always be assigned to the same partition by setting `default_partition_key` in config file.
|
data/fluent-plugin-kafka.gemspec
CHANGED
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |gem|
|
|
|
13
13
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
14
14
|
gem.name = "fluent-plugin-kafka"
|
|
15
15
|
gem.require_paths = ["lib"]
|
|
16
|
-
gem.version = '0.7.
|
|
16
|
+
gem.version = '0.7.4'
|
|
17
17
|
gem.required_ruby_version = ">= 2.1.0"
|
|
18
18
|
|
|
19
19
|
gem.add_dependency "fluentd", [">= 0.10.58", "< 2"]
|
|
@@ -8,7 +8,7 @@ module Fluent::Plugin
|
|
|
8
8
|
class Fluent::Kafka2Output < Output
|
|
9
9
|
Fluent::Plugin.register_output('kafka2', self)
|
|
10
10
|
|
|
11
|
-
helpers :inject, :formatter
|
|
11
|
+
helpers :inject, :formatter, :event_emitter
|
|
12
12
|
|
|
13
13
|
config_param :brokers, :array, :value_type => :string, :default => ['localhost:9092'],
|
|
14
14
|
:desc => <<-DESC
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-kafka
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hidemasa Togashi
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2018-
|
|
12
|
+
date: 2018-07-12 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: fluentd
|