Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • I found an article that AWS will charge the cost for the incomplete multipart uploads as long as I do not call Abort for the on-going uploads. https://docs.amazonaws.cn/en_us/AmazonS3/latest/userguide/abort-mpu.html
  • I can not know the previous handle I used that acquired like below code. 

    Code Block
    $s3 = new S3Client([
        'version' => 'latest',
        'region'  => 'us-east-1'
    ]);
    
    .
    .
    .
    abnormal termination


  • The user could implement exceptional handling, but I think AWS should provide a default policy which can delete the incomplete multipart uploads automatically. AWS is just saying that is what user should take care in the hidden page somewhere on AWS Web Site.


Here's the action you can do.


The action user should do is "Creating lifecycle rule" in the S3 console.

...