embulk-output-sftp 0.1.5 → 0.1.6
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: 64ff7608df9289a70721a9c4bf7685a66929e197
|
4
|
+
data.tar.gz: 14fbf8a0b136c44e999f1aa15b333c19f32eca24
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e58d44d3f650e31e3a5a88405299b66148e0ca8507330e4ebe093978f275504b48d6969d773394c251ed1653971d051077b5a38119f81b0540d5504514678141
|
7
|
+
data.tar.gz: f2735c0c06d09cdaf6539c96133ffe06b001e3ec4d2a1f3e0f1f690b3898136bfd76f8aae09f0401a5cc4b9545b6112abc6ae2377739c3f55aff26b8688626af
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
0.1.6 (2018-03-13)
|
2
|
+
- Fix: Change input stream buffer size to 4MB to fix hanging issue
|
3
|
+
- https://github.com/embulk/embulk-output-sftp/pull/46
|
1
4
|
0.1.5 (2018-03-13)
|
2
5
|
- Fix: Fix random hanging and log transfer progress
|
3
6
|
- https://github.com/embulk/embulk-output-sftp/pull/45
|
data/build.gradle
CHANGED
Binary file
|
@@ -152,7 +152,7 @@ public class SftpUtils
|
|
152
152
|
BufferedOutputStream outputStream = new BufferedOutputStream(remoteFile.getContent().getOutputStream());
|
153
153
|
) {
|
154
154
|
logger.info("Uploading to remote sftp file ({} KB): {}", size / 1024, remoteFile.getPublicURIString());
|
155
|
-
byte[] buffer = new byte[
|
155
|
+
byte[] buffer = new byte[4 * 1024 * 1024]; // 4MB buffer size
|
156
156
|
int len = inputStream.read(buffer);
|
157
157
|
long total = 0;
|
158
158
|
int progress = 0;
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: embulk-output-sftp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Civitaspo
|
@@ -73,7 +73,7 @@ files:
|
|
73
73
|
- classpath/commons-io-2.6.jar
|
74
74
|
- classpath/commons-logging-1.2.jar
|
75
75
|
- classpath/commons-vfs2-2.2.jar
|
76
|
-
- classpath/embulk-output-sftp-0.1.
|
76
|
+
- classpath/embulk-output-sftp-0.1.6.jar
|
77
77
|
- classpath/jsch-0.1.54.jar
|
78
78
|
homepage: https://github.com/embulk/embulk-output-sftp
|
79
79
|
licenses:
|