embulk-output-td 0.5.0 → 0.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8c63a17af8ffcd56935a0645c1344ad81a70504f
4
- data.tar.gz: 4316828fe7bb3447f3e707218431ca2dbae71391
3
+ metadata.gz: 201740ab4976fe7a17cc09668984141ae5c6e356
4
+ data.tar.gz: 5079eecd7151eff1851b4faac0b6d4887ff4b1ff
5
5
  SHA512:
6
- metadata.gz: c7c320e8757801656d13b3baf817d0d25d320c53daef359bbfcd87da6835d4af3be89e65194aa58e525a1cadd41b422c8b8275a791d6b74f2983eedfe3bb4fdd
7
- data.tar.gz: 7eaa607ac5324d313d5a5b753f94a1c229ae055c86f0cff03552a115b53c91495e6cce4678134eaf90015de31e790a482f6655600b9459911084b306586fdf9a
6
+ metadata.gz: 7a529a73f179bf4cdd5d6a0f08a8767e56004642036fa6f95ab618e2d3d66306856c848386f807d70989650a4f3971aac63f243624493fbba1482df46d211110
7
+ data.tar.gz: 0659decc83f2fdb948a35b2d0ffabd53e6eb7d5e7cea6a95b14b1b5a2f1436eec878d8c30c4c709bdcb13aef8e4f05c2648285f0c0035f3a034005ffbdbb4b96
@@ -1,3 +1,6 @@
1
+ ## 0.5.1 - 2018-04-24
2
+ * [maintenance] Upgrade td-client-java v0.8.4 [#88](https://github.com/treasure-data/embulk-output-td/pull/88)
3
+
1
4
  ## 0.5.0 - 2018-04-10
2
5
 
3
6
  * [maintenance] Support resource pool name [#81](https://github.com/treasure-data/embulk-output-td/pull/81)
data/README.md CHANGED
@@ -23,6 +23,7 @@
23
23
  - **database**: database name (string, required)
24
24
  - **table**: table name (string, required)
25
25
  - **session**: bulk_import session name (string, optional)
26
+ - **pool_name**: bulk_import session pool name (string, optional)
26
27
  - **time_column**: user-defined time column (string, optional)
27
28
  - **unix_timestamp_unit**: if type of "time" or **time_column** is long, it's considered unix timestamp. This option specify its unit in sec, milli, micro or nano (enum, default: `sec`)
28
29
  - **tmpdir**: temporal directory (string, optional) if set to null, plugin will use directory that could get from System.property
@@ -62,6 +63,8 @@ out:
62
63
  database: my_db
63
64
  table: my_table
64
65
  time_column: created_at
66
+ auto_create_table: true
67
+ mode: append
65
68
  ```
66
69
 
67
70
  ## Install
@@ -81,6 +84,8 @@ out:
81
84
  database: my_db
82
85
  table: my_table
83
86
  time_column: created_at
87
+ auto_create_table: true
88
+ mode: append
84
89
  ```
85
90
 
86
91
 
@@ -19,7 +19,7 @@ configurations {
19
19
  }
20
20
 
21
21
  group = "org.embulk.output.td"
22
- version = "0.5.0"
22
+ version = "0.5.1"
23
23
 
24
24
  compileJava.options.encoding = 'UTF-8' // source encoding
25
25
  sourceCompatibility = 1.8
@@ -32,7 +32,7 @@ dependencies {
32
32
  provided "org.embulk:embulk-standards:0.8.+"
33
33
  compile "org.msgpack:msgpack-core:0.8.+"
34
34
  provided "org.msgpack:msgpack-core:0.8.+"
35
- compile "com.treasuredata.client:td-client:0.8.3"
35
+ compile "com.treasuredata.client:td-client:0.8.4"
36
36
 
37
37
  testCompile "junit:junit:4.+"
38
38
  testCompile "org.bigtesting:fixd:1.0.0"
@@ -1,7 +1,7 @@
1
1
 
2
2
  Gem::Specification.new do |spec|
3
3
  spec.name = "embulk-output-td"
4
- spec.version = "0.5.0"
4
+ spec.version = "0.5.1"
5
5
  spec.authors = ["Muga Nishizawa"]
6
6
  spec.summary = %[TreasureData output plugin for Embulk]
7
7
  spec.description = %[TreasureData output plugin is an Embulk plugin that loads records to TreasureData read by any input plugins. Search the input plugins by 'embulk-output' keyword.]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-output-td
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Muga Nishizawa
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-10 00:00:00.000000000 Z
11
+ date: 2018-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -83,7 +83,7 @@ files:
83
83
  - src/test/java/org/embulk/output/td/TestTdOutputPlugin.java
84
84
  - src/test/java/org/embulk/output/td/TestTimeValueGenerator.java
85
85
  - src/test/java/org/embulk/output/td/writer/TestFieldWriterSet.java
86
- - classpath/embulk-output-td-0.5.0.jar
86
+ - classpath/embulk-output-td-0.5.1.jar
87
87
  - classpath/guava-21.0.jar
88
88
  - classpath/hamcrest-core-1.1.jar
89
89
  - classpath/jackson-annotations-2.8.1.jar
@@ -97,7 +97,7 @@ files:
97
97
  - classpath/okhttp-3.9.0.jar
98
98
  - classpath/okhttp-urlconnection-3.9.0.jar
99
99
  - classpath/okio-1.13.0.jar
100
- - classpath/td-client-0.8.3.jar
100
+ - classpath/td-client-0.8.4.jar
101
101
  homepage: https://github.com/treasure-data/embulk-output-td
102
102
  licenses:
103
103
  - Apache 2.0