embulk-output-td 0.3.7 → 0.3.8
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/CHANGELOG.md +4 -0
- data/build.gradle +1 -1
- data/embulk-output-td.gemspec +1 -1
- data/src/main/java/org/embulk/output/td/TdOutputPlugin.java +5 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ac66106da1011a062652d0daded90b2902b115af
|
|
4
|
+
data.tar.gz: 6798b24ab73f66cdfc9004ceb2dad72e75efe659
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 04cbb46c3d0686a2196fee1f0bde39008a0429fbdf91de846ac9410c9ab8c51b8b4a02320f946259df6705badd02552c613b52694c8331168243fa8c6ea9987f
|
|
7
|
+
data.tar.gz: 1188d20bec483ff792df110188f415254a90b090ce84066f4aaa483e23a77381fd2276ee4bb65797265fcdf35a48045929a71d0f6a8f52c30d9f9fe54f14a16a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## 0.3.8 - 2016-08-15
|
|
2
|
+
|
|
3
|
+
* [maintenance] Change retry configuration [#50](https://github.com/treasure-data/embulk-output-td/pull/50)
|
|
4
|
+
|
|
1
5
|
## 0.3.7 - 2016-07-27
|
|
2
6
|
|
|
3
7
|
* [maintenance] Upgrade td-client v0.7.24 [#49](https://github.com/treasure-data/embulk-output-td/pull/49)
|
data/build.gradle
CHANGED
data/embulk-output-td.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
Gem::Specification.new do |spec|
|
|
3
3
|
spec.name = "embulk-output-td"
|
|
4
|
-
spec.version = "0.3.
|
|
4
|
+
spec.version = "0.3.8"
|
|
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.]
|
|
@@ -442,6 +442,11 @@ public class TdOutputPlugin
|
|
|
442
442
|
builder.setApiKey(task.getApiKey());
|
|
443
443
|
builder.setEndpoint(task.getEndpoint());
|
|
444
444
|
builder.setUseSSL(task.getUseSsl());
|
|
445
|
+
builder.setConnectTimeoutMillis(60000); // default 15000
|
|
446
|
+
builder.setIdleTimeoutMillis(60000); // default 60000
|
|
447
|
+
builder.setRetryLimit(20); // default 10
|
|
448
|
+
builder.setRetryInitialIntervalMillis(1000); // default 500
|
|
449
|
+
builder.setRetryMaxIntervalMillis(90000); // default 60000
|
|
445
450
|
|
|
446
451
|
Optional<ProxyConfig> proxyConfig = newProxyConfig(task.getHttpProxy());
|
|
447
452
|
if (proxyConfig.isPresent()) {
|
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.3.
|
|
4
|
+
version: 0.3.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Muga Nishizawa
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-08-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -82,7 +82,7 @@ files:
|
|
|
82
82
|
- src/test/java/org/embulk/output/td/TestTdOutputPlugin.java
|
|
83
83
|
- src/test/java/org/embulk/output/td/TestTimeValueGenerator.java
|
|
84
84
|
- src/test/java/org/embulk/output/td/writer/TestFieldWriterSet.java
|
|
85
|
-
- classpath/embulk-output-td-0.3.
|
|
85
|
+
- classpath/embulk-output-td-0.3.8.jar
|
|
86
86
|
- classpath/hamcrest-core-1.1.jar
|
|
87
87
|
- classpath/jackson-annotations-2.6.7.jar
|
|
88
88
|
- classpath/jackson-core-2.6.7.jar
|