embulk-input-s3 0.3.0 → 0.3.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 +4 -4
- data/classpath/embulk-input-s3-0.3.1.jar +0 -0
- data/classpath/{embulk-util-aws-credentials-0.3.0.jar → embulk-util-aws-credentials-0.3.1.jar} +0 -0
- data/src/main/java/org/embulk/input/s3/AbstractS3FileInputPlugin.java +2 -3
- metadata +4 -4
- data/classpath/embulk-input-s3-0.3.0.jar +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c3c15e4d87aac2e6ca0427a550bc565f6aa9caf9
|
|
4
|
+
data.tar.gz: dd9ff5c6570f4130957ad9f8024f9d5b763b758a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c5de58db0a07a651f94be51ec7803a742eb0589a95932240af1a1418aa6763246e16a53e393104aaf75f4c7ffa954b6cb323afd8c8c4d6720b7afc93f532b58a
|
|
7
|
+
data.tar.gz: ecff94f6ea67172f62b6d71b741c9ca9385abb8936ffefdbc0bb15d8ccebe582518a5524df07c457808975b795479ecabca871f9e5fc4102b5ff3af670e5458c
|
|
Binary file
|
data/classpath/{embulk-util-aws-credentials-0.3.0.jar → embulk-util-aws-credentials-0.3.1.jar}
RENAMED
|
Binary file
|
|
@@ -180,11 +180,10 @@ public abstract class AbstractS3FileInputPlugin
|
|
|
180
180
|
{
|
|
181
181
|
ClientConfiguration clientConfig = new ClientConfiguration();
|
|
182
182
|
|
|
183
|
-
/** PLT-9886: disable built-in retry*/
|
|
184
183
|
//clientConfig.setProtocol(Protocol.HTTP);
|
|
185
|
-
|
|
184
|
+
clientConfig.setMaxConnections(50); // SDK default: 50
|
|
186
185
|
// clientConfig.setMaxErrorRetry(3); // SDK default: 3
|
|
187
|
-
|
|
186
|
+
clientConfig.setSocketTimeout(8 * 60 * 1000); // SDK default: 50*1000
|
|
188
187
|
clientConfig.setRetryPolicy(PredefinedRetryPolicies.NO_RETRY_POLICY);
|
|
189
188
|
// set http proxy
|
|
190
189
|
if (task.getHttpProxy().isPresent()) {
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embulk-input-s3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sadayuki Furuhashi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-01-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -61,11 +61,11 @@ files:
|
|
|
61
61
|
- src/test/java/org/embulk/input/s3/TestS3FileInputPlugin.java
|
|
62
62
|
- src/test/java/org/embulk/input/s3/TestS3InputStreamReopener.java
|
|
63
63
|
- src/test/resources/sample_01.csv
|
|
64
|
-
- classpath/embulk-util-aws-credentials-0.3.
|
|
64
|
+
- classpath/embulk-util-aws-credentials-0.3.1.jar
|
|
65
65
|
- classpath/httpcore-4.4.9.jar
|
|
66
66
|
- classpath/httpclient-4.5.5.jar
|
|
67
67
|
- classpath/ion-java-1.0.2.jar
|
|
68
|
-
- classpath/embulk-input-s3-0.3.
|
|
68
|
+
- classpath/embulk-input-s3-0.3.1.jar
|
|
69
69
|
- classpath/aws-java-sdk-core-1.11.466.jar
|
|
70
70
|
- classpath/jcl-over-slf4j-1.7.12.jar
|
|
71
71
|
- classpath/commons-codec-1.10.jar
|
|
Binary file
|