0042-00000203

Updated at:

Problem description

The multipart upload task that corresponds to the value of the UploadId parameter in the request does not exist.

Causes

The multipart upload task specified by the UploadId parameter in the CompleteMultipartUpload request does not exist. Specifically, this error is returned for one of the following reasons:

  • The upload ID specified in the request is invalid.

  • The multipart upload task that corresponds to the upload ID specified by the UploadId parameter has been aborted or completed.

Examples

For example, you initiate the following request:

POST /multipart.data?uploadId=0004B9B2D2F7815C432C9057C031****&encoding-type=url HTTP/1.1
Host: oss-example.oss-cn-hangzhou.aliyuncs.com
Content-Length: 1056
Date: Fri, 24 Feb 2012 10:19:18 GMT
Authorization: OSS qn6q**************:77Dv****************
<CompleteMultipartUpload> 
    <Part> 
        <PartNumber>1</PartNumber>  
        <ETag>"3349DC700140D7F86A0784842780****"</ETag> 
    </Part>  
    <Part> 
        <PartNumber>5</PartNumber>  
        <ETag>"8EFDA8BE206636A695359836FE0A****"</ETag> 
    </Part>  
    <Part> 
        <PartNumber>8</PartNumber>  
        <ETag>"8C315065167132444177411FDA14****"</ETag> 
    </Part> 
</CompleteMultipartUpload>

The UploadId parameter uniquely identifies the multipart upload task. The error is returned for the sample request if the value of the UploadId parameter is invalid or the corresponding multipart upload task has been aborted by the AbortMultipartUpload request or completed by the CompleteMultipartUpload request.

Solutions

  • Make sure that you provide a correct upload ID.

  • Make sure that the multipart upload task that corresponds to the upload ID has not been aborted or has not been completed.

References