It worked, but where I should see files uploaded that way on my filesystem? /opt/clearml/data/filesystem is still empty. However I got artifact back properly. Thanks
Hi  SillyDeer57 ,
I don't think you have a server issue - it's simply a mis-use of the SDK... See  https://github.com/allegroai/clearml/blob/master/examples/reporting/artifacts.py , when calling  task.upload_artifact  - you are indeed passing the name twice, you should do:task.upload_artifact("data", "./posts.csv")ortask.upload_artifact(name="data", artifact_object="./posts.csv")
nope, it doesn't.... looks like a misconfigured local file name 🙂 - I assume you'll find it on your disk
I see, there is a missmatch in getting started and artifacts documentation
ok it works 😉 There was a mistake during SDK configuration
Perhaps the SDK is configured to use another file server?
curl https://raw.githubusercontent.com/allegroai/clearml-server/master/docker/docker-compose.yml -o ./docker-compose.yml  one thing I changed is port for webapp
You can try to  sudo docker exec -it clearml-fileserver /bin/bash  and see what you get when you do  ls /mnt/fileserver
how did you configure the ClearML SDK exactly?
So how can you get the file back? Are you sure your SDK is configured to use your server?
Should be in  /opt/clearml/data/fileserver