fluent-plugin-output-solr 0.2.2 → 0.2.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/README.md +1 -1
- data/fluent-plugin-output-solr.gemspec +1 -1
- data/lib/fluent/plugin/out_solr.rb +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: 8acc7d9e4641d918c14e4a74ae86d63fc1266dbe
|
|
4
|
+
data.tar.gz: 9ce2c1d1d77987d8a3443a9d78cfb88194011ef0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8110587864cbe43bf1bd6d3c2cd6c7f872a6f3dca77e74eb35a960439693f956e620fea2b3c78cc8362586e1e7982ee5bebce56780e6b2decf56978e515772cc
|
|
7
|
+
data.tar.gz: f92f9c63c28ae9bfab7aeb4aea7111e3cc9d24d35395e8a0121d2f5a3b8f305fdaf86d1dcec960737d717c433a5fd51ffa32da68bd064737fbf5d9a05f5f453d
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Fluent::Plugin::
|
|
1
|
+
# Fluent::Plugin::SolrOutput
|
|
2
2
|
|
|
3
3
|
This is a [Fluentd](http://fluentd.org/) output plugin for send data to [Apache Solr](http://lucene.apache.org/solr/). It support [SolrCloud](https://cwiki.apache.org/confluence/display/solr/SolrCloud) not only Standalone Solr.
|
|
4
4
|
|
|
@@ -58,7 +58,7 @@ module Fluent
|
|
|
58
58
|
@collection = conf.has_key?('collection') ? conf['collection'] : DEFAULT_COLLECTION
|
|
59
59
|
|
|
60
60
|
@defined_fields = conf['defined_fields']
|
|
61
|
-
@
|
|
61
|
+
@ignore_undefined_fields = conf.has_key?('ignore_undefined_fields') ? conf['ignore_undefined_fields'] : DEFAULT_IGNORE_UNDEFINED_FIELDS
|
|
62
62
|
|
|
63
63
|
@unique_key_field = conf['unique_key_field']
|
|
64
64
|
@tag_field = conf.has_key?('tag_field') ? conf['tag_field'] : DEFAULT_TAG_FIELD
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-output-solr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Minoru Osuka
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-01-
|
|
11
|
+
date: 2016-01-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fluentd
|