fluent-plugin-groonga 1.0.7 → 1.0.8

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: a74f86c55ce47a9cfe50317b340e485660cae1f4
4
- data.tar.gz: 3ced1531e3662eeeb185cfb8bbff85b7fb171cb5
3
+ metadata.gz: f5c57a846ebfc9321fd1ab1b79ce794e6aefbfff
4
+ data.tar.gz: fd6dbc5627188c8cc20d221b27ca802d755dd2ea
5
5
  SHA512:
6
- metadata.gz: 086f186331471cdda0b652e36e4c4b8d7344d1f17413bfcc6ec4430c6a1ba097c863a14667f0ae9fc230f17fe265dc6165fabf4a45cf7e9f76f11b9d0aea37ed
7
- data.tar.gz: 2992195c8cbae5bfd07167f39bf46af6f686ce82ee153826ea710cb0b148d17155e3562a5e35b2c60f9f4436988945df7b62a2a3f0b125aacf1bb8ddbd7b951f
6
+ metadata.gz: d9699527fea08ac73e293215282f327f51cafa880eae410ff0ffada7568144032480481e55405ae4217654e7cd503301fc29ade309e9cc76619e5dd322e74d8d
7
+ data.tar.gz: a9acb39dd64613ff97eb4336e21b7b34e28e9d8876285bb69b6e8fc9e3effbb9d5470aeab16478b5ae09bfeb97807de598d0f6a7c6e9fab081800c208f19cb71
data/doc/text/news.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  # News
4
4
 
5
+ ## 1.0.8: 2014-11-05
6
+
7
+ ### Fixes
8
+
9
+ * out: Fixed a bug that index flags aren't separated with `|`.
10
+
5
11
  ## 1.0.7: 2014-11-05
6
12
 
7
13
  ### Improvements
@@ -17,7 +17,7 @@
17
17
 
18
18
  Gem::Specification.new do |spec|
19
19
  spec.name = "fluent-plugin-groonga"
20
- spec.version = "1.0.7"
20
+ spec.version = "1.0.8"
21
21
  spec.authors = ["Kouhei Sutou"]
22
22
  spec.email = ["kou@clear-code.com"]
23
23
  spec.summary = "Fluentd plugin to store data into Groonga and implement Groonga replication system."
@@ -238,7 +238,7 @@ module Fluent
238
238
  {
239
239
  "table" => @table.name,
240
240
  "name" => name,
241
- "flags" => flags.join,
241
+ "flags" => flags.join("|"),
242
242
  "type" => source_table,
243
243
  "source" => source_columns,
244
244
  }
@@ -115,22 +115,22 @@
115
115
  default_tokenizer TokenBigram
116
116
  normalizer NormalizerAuto
117
117
  <index>
118
- name host_index
118
+ name hosts_key_index
119
119
  source_table Hosts
120
120
  source_columns _key
121
121
  </index>
122
122
  <index>
123
- name url_index
123
+ name urls_key_index
124
124
  source_table URLs
125
125
  source_columns _key
126
126
  </index>
127
127
  <index>
128
- name path_index
128
+ name paths_key_index
129
129
  source_table Paths
130
130
  source_columns _key
131
131
  </index>
132
132
  <index>
133
- name user_agent_index
133
+ name user_agents_key_index
134
134
  source_table UserAgents
135
135
  source_columns _key
136
136
  </index>
@@ -140,9 +140,8 @@
140
140
  name agent
141
141
  type UserAgents
142
142
  <index>
143
- table Terms
144
- name logs_agent_index
145
- flags WITH_POSITION
143
+ table UserAgents
144
+ name logs_index
146
145
  </index>
147
146
  </mapping>
148
147
 
@@ -160,7 +159,7 @@
160
159
  type Hosts
161
160
  <index>
162
161
  table Hosts
163
- name hosts_index
162
+ name logs_index
164
163
  </index>
165
164
  </mapping>
166
165
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-groonga
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.7
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou