We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6acbba1 + a646f8d commit b5122e1Copy full SHA for b5122e1
src/main/java/org/embulk/output/sftp/SftpUtils.java
@@ -159,7 +159,7 @@ public Void call() throws IOException
159
BufferedOutputStream outputStream = new BufferedOutputStream(remoteFile.getContent().getOutputStream());
160
) {
161
logger.info("Uploading to remote sftp file ({} KB): {}", size / 1024, remoteFile.getPublicURIString());
162
- byte[] buffer = new byte[4 * 1024 * 1024]; // 4MB buffer size
+ byte[] buffer = new byte[32 * 1024 * 1024]; // 32MB buffer size
163
int len = inputStream.read(buffer);
164
long total = 0;
165
int progress = 0;
0 commit comments