On Mon, Jul 10, 2023 at 10:40 AM <[email protected]> wrote: > > Hi, > > yes, this is incomplete multiparts problem. > > Then, how do admin delete the incomplete multipart object? > I mean > 1. can admin find incomplete job and incomplete multipart object? > 2. If first question is possible, then can admin delete all the job or object > at once?
you don't need to be an admin to do these things, they're part of the S3 API. this cleanup can be automated using a bucket lifecycle policy [1]. for manual cleanup with aws cli, for example, you can use 'aws s3api list-multipart-uploads' [2] to discover all of the incomplete uploads in a given bucket, and 'aws s3api abort-multipart-upload' [3] to abort each of them. in addition to specifying the AWS_ACCESS_KEY_ID/AWS_SECRET_ACCESS_KEY environment variables, you'll also need to point --endpoint-url at a running radosgw [1] https://docs.aws.amazon.com/AmazonS3/latest/userguide/mpu-abort-incomplete-mpu-lifecycle-config.html [2] https://docs.aws.amazon.com/cli/latest/reference/s3api/list-multipart-uploads.html [3] https://docs.aws.amazon.com/cli/latest/reference/s3api/abort-multipart-upload.html > _______________________________________________ > ceph-users mailing list -- [email protected] > To unsubscribe send an email to [email protected] > _______________________________________________ ceph-users mailing list -- [email protected] To unsubscribe send an email to [email protected]
