-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AWS S3 storage driver (boto3) not found #39
Comments
We're looking into this! I'll update when I have more news. |
Hey @vladseve7n, apologies for the long turn around... You were on the right path:
Does this work for you? |
Hi, I'm facing the same problem. While testing the given example with the triton-gpu docker compose file, everything is working. I disabled SLL in the
results in the following error:
My configuration of minIO in the clearml.conf file looks the following:
|
@JamesNeumann the clearml.conf file is your local file (on your local machine), right? |
Yes, it is the local file on the machine that is running clearml-serving. |
I think you'll need to apply the same setting to the
into |
Mounting the Thanks for the quick help @jkhenning! |
Hello! I am trying to use clearml-serving to serve my PyTorch pretrained model.
I deploy ClearML Server and using S3 Minio on local network to store artifacts and pretrained weights.
There is no problem with storing and getting models using Input\Output Models. Everything works correctly.
But clearml-serving (particularly the clearml-serving-triton container) don't have opportunity to work with Minio as it has not python module boto3
Using tutorial I add S3 credentials to example.env:
After that it doesn't work as
AWS_ACCESS_KEY_ID
andAWS_SECRET_ACCESS_KEY
not be sent to docker-compose. I add those variables toclearml-serving-triton
container in the way to solve it:But after that there is an error in this container:
I guess that it can be fixed adding "boto3>=1.9" to the container requirements.txt here:
https://github.com/allegroai/clearml-serving/blob/main/clearml_serving/engines/triton/requirements.txt
After doing this and building using local docker image I get the following error:
And I don't have any ideas how to disable secure connection in this container
The text was updated successfully, but these errors were encountered: