Tier 2 Data Management
This page aims to surface some lesser known use cases for the Tier 2 storage platform available on MSI Systems.
Multipart Uploads configuration
This feature is typically used by S3 (the protocol Tier2 uses) clients to improve write performance. If a multipart upload fails unexpectedly, it can result in the partially uploaded data lingering on the storage system in the form of "incomplete multipart uploads".
These incomplete multipart uploads count against a user's quota and, in large numbers, can affect the performance of list operations on the bucket. We recommend users of this feature to apply a data lifecycle policy to automatically delete incomplete multipart uploads. The following is an example lifecycle policy:<LifecycleConfiguration>
<Rule>
<ID>abort-multipartupload-3days</ID>
<Prefix></Prefix>
<Status>Enabled</Status>
<AbortIncompleteMultipartUpload>
<DaysAfterInitiation>3</DaysAfterInitiation>
</AbortIncompleteMultipartUpload>
</Rule>
</LifecycleConfiguration>
Set up with the following steps
- Download example xml file from Tier 2 bucket s3://helpdesk
s3cmd get s3://helpdesk/abort-lc-mp-3days.xml $HOME
- Apply to your existing bucket
s3cmd setlifecycle $HOME/abort-lc-mp-3days.xml s3://bucketname