fluent-plugin-elasticsearch 4.3.0 → 4.3.1
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/History.md +3 -0
- data/README.md +1 -1
- data/fluent-plugin-elasticsearch.gemspec +1 -1
- data/test/plugin/test_out_elasticsearch.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1cd81dcd51b189a0197c440aee9211661cd277c668ecf84474540393d77e47f0
|
|
4
|
+
data.tar.gz: c8b22ada3eaa16f7423e04c804130f35a12c15de34565272a7048dda78fc0d83
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0564d3b40b180c425c68323dbaf7498e7483e4832a76262c8378ffdcb8bb4591e62b77a53a6a0c232ba418d397a2d74447d24b77441aca26a38aee02e0f389d2
|
|
7
|
+
data.tar.gz: f0274d59d1a6411ab320d93f3840325b1379f417f50c716ecba75ea0eda31392d75c1f41efcb958c825745ada6aaa3f6810da96aae4bfde7f11e6e03602242aa
|
data/History.md
CHANGED
data/README.md
CHANGED
|
@@ -1279,7 +1279,7 @@ Default value is `true`.
|
|
|
1279
1279
|
|
|
1280
1280
|
Configure `bulk_message` request splitting threshold size.
|
|
1281
1281
|
|
|
1282
|
-
Default value is `
|
|
1282
|
+
Default value is `-1`(unlimited).
|
|
1283
1283
|
|
|
1284
1284
|
If you specify this size as negative number, `bulk_message` request splitting feature will be disabled.
|
|
1285
1285
|
|
|
@@ -3,7 +3,7 @@ $:.push File.expand_path('../lib', __FILE__)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = 'fluent-plugin-elasticsearch'
|
|
6
|
-
s.version = '4.3.
|
|
6
|
+
s.version = '4.3.1'
|
|
7
7
|
s.authors = ['diogo', 'pitr', 'Hiroshi Hatake']
|
|
8
8
|
s.email = ['pitr.vern@gmail.com', 'me@diogoterror.com', 'cosmo0920.wp@gmail.com']
|
|
9
9
|
s.description = %q{Elasticsearch output plugin for Fluent event collector}
|
|
@@ -3751,6 +3751,7 @@ class ElasticsearchOutputTest < Test::Unit::TestCase
|
|
|
3751
3751
|
driver.configure(Fluent::Config::Element.new(
|
|
3752
3752
|
'ROOT', '', {
|
|
3753
3753
|
'@type' => 'elasticsearch',
|
|
3754
|
+
'bulk_message_request_threshold' => 20 * 1024 * 1024,
|
|
3754
3755
|
}, [
|
|
3755
3756
|
Fluent::Config::Element.new('buffer', 'tag', {
|
|
3756
3757
|
'chunk_keys' => ['tag', 'time'],
|