Hello! I have a hard time connecting to non-aws s3 bucket to use it as a storage to clearml Dataset. Even though I add access and secret key in ~/clearml.conf file, when i trying to create a new clearml dataset:
from clearml import Dataset
cdataset = Dataset.create(
dataset_name='synthetica_train',
dataset_project='Seismic',
dataset_version="1.0",
description='Synthetic data for training',
output_uri = "s3://backet"
)
I get an error:
2023-04-07 16:38:34,629 - clearml.storage - ERROR - Failed uploading: Could not connect to the endpoint URL: "https://clearml-data-test.s3.ru-central1.amazonaws.com/.clearml.test"
I really can’t find out where this amazonaws.com/.clearml.test is coming from and how to set endpoint url of my non amazon aws s3 bucket, so it looks like
https://<my_endpoint>/<bucket>
Can some please help me?