i need clearml.conf on my clearml server (in config folder which is mounted in docker-compose) or user PC? Or Both?
Its self hosted S3 thats all I know, i dont think it s Minio
Setting these urls in SETTINGS/Configuration/ WEB APP CLOUD ACCESS in web ui
None doesnt work
None doesnt work
None doesnt work
None doesnt work
None gets replaced to None ://s3.host-our.com:8080 doesnt work
None doesnt work
None doesnt work
In all of these instances The S3 CREDENTIALS popup never dissapears, it will still popup always asking for creds no matter how I try to set the creds
This is unrelated to your routers. There are two things at play here. The configuration of WHERE the data will go - output_uri and the other is the clearml.conf that you need to setup with credentials. I am telling you, you are setting it wrong. Please follow documentation.
But there are stil some wierd issues, i cannot see the files uploaded in bucket
Bump, still waiting, closing in on a month since we are unable to deploy. We have team of 10+ people
good morning, I tried the script you provided and Im getting somewhere
clearml.conf is a fresh one i did clearml-init to make sure
I think that the problem is with missing region definition. You need to set region in the config file.
But it looks like that for the existing version it will not work since there still appears to be a bug related to this. The hotfix is already on the way from my understanding
So, in short, you need to set the region in the config file + wait for the hotfix that is pending for 1.14
helper is returned as None for some reason
there is a typing in clearm.conf i sent you on like 87, there should be "key" not "ey" im aware of it
- Here is how client side clearml.conf looks like together with the script im using to create the tasks. Uploads seems to work and is fixed thanks to you guys 🙌



will it be appended in clearml?
"s3" is part of domain to the host
@<1523701435869433856:profile|SmugDolphin23> Any ideas how to fix this?
digging deeper it seems like a parsing issue
@<1523701070390366208:profile|CostlyOstrich36> Hello, im still unable to understand how to fix this
@<1523701435869433856:profile|SmugDolphin23> Any news?
btw @<1590514584836378624:profile|AmiableSeaturtle81> , can you try to specify the host without http* and try to set the port to 443? like s3.my _host:443 (or even without the port)
I dont have a region. I guess I will wait till tomarrow then?
I know these keys work, url and everything else works because I use these creds daily
Can you add your full configurations again?
Yes, credetials seems to work
Im trying to figure out not why I dont see the uploaded files / folders
- I checked maybe clearml task uses fileserver instead but i dont see any files in fileserver folder
- Nothing is uploaded in bucket (i will ask IT guy to check if im uploading any files in logs)

we do, yes. Changing it to https in settings doesnt help
I cant get the conf credentials to work
Specifying it like this gives me:
Exception has occurred: ValueError
Could not get access credentials for ' None ' , check configuration file ~/clearml.conf
Hi @<1590514584836378624:profile|AmiableSeaturtle81> ! We have someone investigating the UI issue (I mainly work on the sdk). They will get back to you once they find something...
As I wrote, you need to remove the s3 from the start of the host section..
Hey, i see that 1.14.2 dropped
I tried it but the issue is still there, maybe the hotfix is in next patch?
Here is the setup so you can reproduce it (we dont have region field)
clearml.conf:s3 {use_credentials_chain: falsecredentials: [{host: " s3.somehost.com "key: "XXXXXXXXXXXXXXXXXXXX"secret: "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"bucket: "rnd-dev"},]}
test.py
task: clearml.Task = clearml.Task.init(project_name="project",task_name="task",output_uri=" None ",)
2024-02-08 11:23:52,150 - clearml.storage - ERROR - Failed creating storage object None Reason: Missing key and secret for S3 storage access ( None )
what about this script (replace with your creds, comment out creds in clearml.conf for now)
from clearml import Task
from clearml.storage.helper import StorageHelper
task = Task.init("test", "test")
task.setup_aws_upload(
bucket="bucket1",
host="localhost:9000",
key="",
secret="",
profile=None,
secure=True
)
helper = StorageHelper.get("
")



