Modifier and Type | Class and Description |
---|---|
static class |
UploadConfiguration.UploadConfigurationBuilder |
Modifier and Type | Field and Description |
---|---|
static long |
MAXIMUM_ALLOWED_LENGTH_PER_PART_MB |
static int |
MAXIMUM_NUM_ALLOWED_PARTS |
static long |
MINIMUM_ALLOWED_LENGTH_PER_PART_MB |
Modifier and Type | Method and Description |
---|---|
static UploadConfiguration.UploadConfigurationBuilder |
builder() |
long |
getLengthPerUploadPart()
Length in MiB for each part of a multi-part upload (except the last), default 128.
|
int |
getMaxPartsForMultipartUpload()
Deprecated.
no longer configurable as maxPartsForMultipartUpload is always configured as the
default of 10,000. Use
instead |
long |
getMinimumLengthForMultipartUpload()
Minimum length in MiB before an upload is performed using multi-part upload, default 128.
|
long |
getMinimumLengthPerUploadPart()
Deprecated.
|
boolean |
isAllowMultipartUploads()
Flag to indicate that multi-part uploads can be used.
|
boolean |
isAllowParallelUploads()
Flag to indicate that multi-part uploads can upload individual parts in parallel if possible.
|
boolean |
isDisableAutoAbort()
Flag to indicate that uploads that fail should not be automatically aborted (client is
reponsible for always cleaning up failed uploads themselves).
|
boolean |
isEnforceMd5BeforeMultipartUpload()
Flag to indicate that MD5 should be set on every part of a multi-part upload.
|
boolean |
isEnforceMd5BeforeUpload()
Flag to indicate that MD5 should be set on every PutObject call.
|
String |
toString() |
public static final int MAXIMUM_NUM_ALLOWED_PARTS
public static final long MINIMUM_ALLOWED_LENGTH_PER_PART_MB
public static final long MAXIMUM_ALLOWED_LENGTH_PER_PART_MB
@Deprecated public long getMinimumLengthPerUploadPart()
public static UploadConfiguration.UploadConfigurationBuilder builder()
public long getMinimumLengthForMultipartUpload()
Minimum length in MiB before an upload is performed using multi-part upload, default 128.
Note: Accepted values: 0 - 51200. Using a large value is not recommended.
public long getLengthPerUploadPart()
Length in MiB for each part of a multi-part upload (except the last), default 128.
Accepted values: 1 - 51200. Using a large value is not recommended.
@Deprecated public int getMaxPartsForMultipartUpload()
instead
Maximum number of parts to split an upload into, default 10,000 (max allowable parts by Object Storage Service).
Note: Accepted values: 1 - 10000
public boolean isEnforceMd5BeforeUpload()
Flag to indicate that MD5 should be set on every PutObject call. If not provided, the SDK will calculate it before uploading the object. Default is false.
Note, having the SDK calculate it could lead to OutOfMemory exceptions if the stream
cannot be duplicated, ie does not implement DuplicatableInputStream
, as the entire
stream will have to be read into memory.
public boolean isEnforceMd5BeforeMultipartUpload()
Flag to indicate that MD5 should be set on every part of a multi-part upload. The SDK will calculate the MD5 before uploading for each part it creates. Default is false.
Note, having the SDK calculate it could lead to OutOfMemory exceptions if the source
stream for the part cannot be duplicated, ie does not implement DuplicatableInputStream
, as the entire part will have to be read into memory.
public boolean isAllowMultipartUploads()
Flag to indicate that multi-part uploads can be used. Default is true.
public boolean isAllowParallelUploads()
Flag to indicate that multi-part uploads can upload individual parts in parallel if possible. Default is true.
public boolean isDisableAutoAbort()
Flag to indicate that uploads that fail should not be automatically aborted (client is reponsible for always cleaning up failed uploads themselves). Default is false.
Copyright © 2016–2024. All rights reserved.