Open sayonkumarsaha opened 3 years ago
I'm trying to adapt this project mmfashion on Amazon SageMaker that requires the CEPH module for backend. Unfortunately pip install ceph doesn't work. The only work-around was to build the ceph source-code manually by running in my container:
pip install ceph
!git clone git://github.com/ceph/ceph !git submodule update --init --recursive
This does allow me to import ceph successfully. But it throws the following error when it comes to fecthing data from Amazon S3:
ceph
AttributeError: module 'ceph' has no attribute 'S3Client'
Has someone integrated CEPH with Amazon S3 Bucket or has suggestions in the same line on how to tackle this?
I'm trying to adapt this project mmfashion on Amazon SageMaker that requires the CEPH module for backend. Unfortunately
pip install ceph
doesn't work. The only work-around was to build the ceph source-code manually by running in my container:This does allow me to import
ceph
successfully. But it throws the following error when it comes to fecthing data from Amazon S3:Has someone integrated CEPH with Amazon S3 Bucket or has suggestions in the same line on how to tackle this?