embulk-input-s3 0.3.1 → 0.3.2
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec2a886fc6335f4544768fdaf517e34eabe7cca0
|
4
|
+
data.tar.gz: 027f4dd13e32e99c6c82e7f8faebac84c9124e31
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cdb466e0b26a5fc61e717cc4c6af0546a8ad47bf973b70946b35662cf8ccb6c345a23ce5a56ba337ce92104fd53a34e8c2aae77df9e6999472b99225df6d26a9
|
7
|
+
data.tar.gz: e2164714f2c8600a93787c9d98e2cf4131b4f9e1d9ddb3ddbbf0e1efa7e484b543c9eba7eec48052f88b9026f82cb420f103f0de2b649e4a1b436ee62f4907f7
|
Binary file
|
data/classpath/{embulk-util-aws-credentials-0.3.1.jar → embulk-util-aws-credentials-0.3.2.jar}
RENAMED
Binary file
|
@@ -475,6 +475,9 @@ public abstract class AbstractS3FileInputPlugin
|
|
475
475
|
}.executeWithCheckedException(retryExec, IOException.class);
|
476
476
|
|
477
477
|
long objectSize = object.getObjectMetadata().getContentLength();
|
478
|
+
// Some plugin users are parsing this output to get file list.
|
479
|
+
// Keep it for now but might be removed in the future.
|
480
|
+
LOGGER.info("Open S3Object with bucket [{}], key [{}], with size [{}]", bucket, key, objectSize);
|
478
481
|
InputStream inputStream = new ResumableInputStream(object.getObjectContent(), new S3InputStreamReopener(client, request, objectSize, retryExec));
|
479
482
|
return new InputStreamWithHints(inputStream, String.format("s3://%s/%s", bucket, key));
|
480
483
|
}
|
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sadayuki Furuhashi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-01-
|
11
|
+
date: 2019-01-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -61,12 +61,12 @@ 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.2.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.1.jar
|
69
68
|
- classpath/aws-java-sdk-core-1.11.466.jar
|
69
|
+
- classpath/embulk-input-s3-0.3.2.jar
|
70
70
|
- classpath/jcl-over-slf4j-1.7.12.jar
|
71
71
|
- classpath/commons-codec-1.10.jar
|
72
72
|
- classpath/jmespath-java-1.11.466.jar
|