File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
api/src/main/java/io/minio Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 3030 * PutObjectBaseArgs}, {@link ComposeObjectArgs} and {@link CopyObjectArgs}.
3131 */
3232public abstract class ObjectWriteArgs extends ObjectArgs {
33- // allowed maximum object size is 5TiB.
34- public static final long MAX_OBJECT_SIZE = 5L * 1024 * 1024 * 1024 * 1024 ;
3533 // allowed minimum part size is 5MiB in multipart upload.
3634 public static final int MIN_MULTIPART_SIZE = 5 * 1024 * 1024 ;
3735 // allowed maximum part size is 5GiB in multipart upload.
3836 public static final long MAX_PART_SIZE = 5L * 1024 * 1024 * 1024 ;
3937 public static final int MAX_MULTIPART_COUNT = 10000 ;
38+ // allowed maximum object size is 48.828125 TiB.
39+ public static final long MAX_OBJECT_SIZE = MAX_PART_SIZE * MAX_MULTIPART_COUNT ;
4040
4141 protected Http .Headers headers ;
4242 protected Http .Headers userMetadata ;
You can’t perform that action at this time.
0 commit comments