Hi Manjunath, Can you find out what specific version of ceph is the customer running?
Thanks Manjunath. https://github.com/ceph/ceph/pull/26569 will be backported to address this BZ.
Hi, In my test environment, (CEPH V 3.3) , the bucket is versioned.. --------------------------------------------------------------------------------------------- --->[root@magna107 ~]# radosgw-admin bucket list [ "my-new-bucket" ] ----------------------------------------------------------------------------------------------- --->[root@magna107 ~]# cat 2-1bg.py import boto3 access_key = '12345' secret_key = '67890' s3_production = boto3.client('s3', endpoint_url='http://magna107', aws_access_key_id = access_key, aws_secret_access_key = secret_key ) print(s3_production.get_bucket_versioning(Bucket='my-new-bucket')) ----------------------------------------------------------------------------------------------------- --->[root@magna107 ~]# python2 2-1bg.py {u'Status': 'Enabled', 'ResponseMetadata': {'HTTPStatusCode': 200, 'RetryAttempts': 0, 'HostId': '', 'RequestId': 'tx000000000000000000026-005d4808ea-a71cf-default', 'HTTPHeaders': {'date': 'Mon, 05 Aug 2019 10:46:02 GMT', 'content-length': '161', 'x-amz-request-id': 'tx000000000000000000026-005d4808ea-a71cf-default', 'content-type': 'application/xml'}}} --------------------------------------------------------------------------------------------------------------------------------------------------------- ---> if bucket name is changed to my-bucket... --->[root@magna107 ~]# cat 2-1bg.py import boto3 access_key = '12345' secret_key = '67890' s3_production = boto3.client('s3', endpoint_url='http://magna107', aws_access_key_id = access_key, aws_secret_access_key = secret_key ) print(s3_production.get_bucket_versioning(Bucket='my-bucket')) -------------------------------------------------------------------------------------------------------------------------- --->[root@magna107 ~]# python2 2-1bg.py Traceback (most recent call last): File "2-1bg.py", line 10, in <module> print(s3_production.get_bucket_versioning(Bucket='my-bucket')) File "/usr/lib/python2.7/site-packages/botocore/client.py", line 357, in _api_call return self._make_api_call(operation_name, kwargs) File "/usr/lib/python2.7/site-packages/botocore/client.py", line 661, in _make_api_call raise error_class(parsed_response, operation_name) botocore.errorfactory.NoSuchBucket: An error occurred (NoSuchBucket) when calling the GetBucketVersioning operation: Unknown ------------------------------------------------------------------------------------------------------------------------------ Let me know if u need more details. Rudra
*** Bug 1688931 has been marked as a duplicate of this bug. ***
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHSA-2019:2538