fluent-plugin-bigquery 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/lib/fluent/plugin/bigquery/version.rb +1 -1
- data/lib/fluent/plugin/out_bigquery.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: b95a4afc7841d827595ffe15bf40be88d240be40
|
4
|
+
data.tar.gz: f4b8a81b4703406198d12aec2436d230bd7d9fc8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 896754c92e5324bd2c7f85281faa6408222944c46f7bd4472976ae04e0aaba1882675dd16a87ac48c0d4ead71699435077638c6d639a3157392f6c58ab6a2c43
|
7
|
+
data.tar.gz: 58b01e74560eccaed34edefb7d50b46d4e66d5abdb177784367460f8422521d401f4e0cee3c12186041330a6c2698e3891ee3266a56acf4ed44e63dc6d5f68d0
|
data/README.md
CHANGED
@@ -38,7 +38,7 @@ Configure insert specifications with target table schema, with your credentials.
|
|
38
38
|
|
39
39
|
field_integer time,status,bytes
|
40
40
|
field_string rhost,vhost,path,method,protocol,agent,referer
|
41
|
-
field_float
|
41
|
+
field_float requesttime
|
42
42
|
field_boolean bot_access,loginsession
|
43
43
|
</match>
|
44
44
|
```
|
@@ -72,7 +72,7 @@ For high rate inserts over streaming inserts, you should specify flush intervals
|
|
72
72
|
|
73
73
|
field_integer time,status,bytes
|
74
74
|
field_string rhost,vhost,path,method,protocol,agent,referer
|
75
|
-
field_float
|
75
|
+
field_float requesttime
|
76
76
|
field_boolean bot_access,loginsession
|
77
77
|
</match>
|
78
78
|
```
|
@@ -131,7 +131,7 @@ Compute Engine instance, then you can configure fluentd like this.
|
|
131
131
|
|
132
132
|
field_integer time,status,bytes
|
133
133
|
field_string rhost,vhost,path,method,protocol,agent,referer
|
134
|
-
field_float
|
134
|
+
field_float requesttime
|
135
135
|
field_boolean bot_access,loginsession
|
136
136
|
</match>
|
137
137
|
```
|
@@ -244,7 +244,7 @@ The third method is to set `fetch_schema` to `true` to enable fetch a schema usi
|
|
244
244
|
</match>
|
245
245
|
```
|
246
246
|
|
247
|
-
If you specify multiple
|
247
|
+
If you specify multiple tables in configuration file, plugin get all schema data from BigQuery and merge it.
|
248
248
|
|
249
249
|
NOTE: Since JSON does not define how to encode data of TIMESTAMP type,
|
250
250
|
you are still recommended to specify JSON types for TIMESTAMP fields as "time" field does in the example, if you use second or third method.
|
@@ -24,7 +24,7 @@ module Fluent
|
|
24
24
|
config_set_default :flush_interval, 0.25
|
25
25
|
config_set_default :try_flush_interval, 0.05
|
26
26
|
|
27
|
-
config_set_default :buffer_chunk_records_limit,
|
27
|
+
config_set_default :buffer_chunk_records_limit, 500
|
28
28
|
config_set_default :buffer_chunk_limit, 1000000
|
29
29
|
config_set_default :buffer_queue_limit, 1024
|
30
30
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-bigquery
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Naoya Ito
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-10-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|