Skip to content

Commit

Permalink
Decrease Aws upload chunk size to 20 MB
Browse files Browse the repository at this point in the history
  • Loading branch information
pditommaso committed Apr 17, 2022
1 parent 798bae1 commit 086138f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class S3MultipartOptions<V extends S3MultipartOptions> {

private static final Logger log = LoggerFactory.getLogger(S3MultipartOptions.class);

public static final int DEFAULT_CHUNK_SIZE = 100 << 20;
public static final int DEFAULT_CHUNK_SIZE = 20 << 20; // 20 MB

/**
* Upload chunk max size
Expand Down

0 comments on commit 086138f

Please sign in to comment.