from boto.s3.connection import S3Connection
conn = S3Connection('****', '****', host='s3.eu-geo.objectstorage.softlayer.net')
mybucket = conn.get_bucket('mybucket')
返回
/anaconda3/lib/python3.6/site-packages/boto/s3/connection.py in head_bucket(self, bucket_name, headers)
551 err.error_code = 'NoSuchBucket'
552 err.error_message = 'The specified bucket does not exist'
--> 553 raise err
554 else:
555 raise self.provider.storage_response_error(
S3ResponseError: S3ResponseError: 404 Not Found
但是,如果我尝试创建存储桶:
conn.create_bucket('mybucket')
S3CreateError: S3CreateError: 409 Conflict
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><Error><Code>BucketAlreadyExists</Code><Message>Container mybucket exists</Message><Resource>/mybucket/</Resource><RequestId>****</RequestId><httpStatusCode>409</httpStatusCode></Error>
答案 0 :(得分:1)
存储桶名称在IBM Cloud对象存储(或AWS S3)中是通用唯一的。删除存储桶最终是一致的,并且需要10分钟才能传播,这意味着最近删除的存储桶(由您或任何其他用户)的存储桶名称将需要一些时间再次可用。您提到的错误表明该桶“mybucket&#39;最近被删除,并且处于名称不可用的时期。通常建议在存储桶名称之前使用一些特定的前缀,如果它是常见的(如mybucket)。查看IBM COS API docs:
中的摘录发布到空桶的DELETE删除存储桶。删除存储桶后,系统将保留名称10分钟,然后将其释放以供重复使用。只能删除空桶。此操作不使用特定于操作的标头,查询参数或有效内容元素。