Unable to list bucket, appears to time out

0

Hi, I have a bucket shareablee-next that I'm not able to list the contents of. In the web console, the ListObjects request appears to time out, and on the CLI the command runs for a long time without returning anything.

feita há 4 anos404 visualizações
1 Resposta
0

It looks like this was due to having versioning enabled on this bucket, and having lots of deleted objects retained as previous versions.

If I did something like this:

import boto3
s3 = boto3.resource("s3")
bucket = s3.Bucket("shareablee-next")
for obj in bucket.object_versions.filter(Prefix='testing/'):
    print(obj.key)

I was able to quickly list object versions. It appears that the normal object list operation was slow because it had to filter out many, many, deleted objects first.

My ultimate goal was to delete this objects along with their previous versions, so I can also just use this:

import boto3
s3 = boto3.resource("s3")
bucket = s3.Bucket("shareablee-next")
bucket.object_versions.filter(Prefix='testing/').delete()

I had also set up a lifecycle rule, but it also seemed to be delayed by the slow listing. Now that I've run this delete script for a while, I can list the bucket again, and there are still objects that should have been deleted by now.

respondido há 4 anos

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas