-
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
Configure options for gRPC (Triton server) #49
Comments
Hi @amirhmk, At this time this is not possible, though it definitely should be 🙂. In the meantime, you can try changing here: channel = self._ext_grpc.aio.insecure_channel(triton_server_address,
options=dict([('grpc.max_send_message_length', 512 * 1024 * 1024), ('grpc.max_receive_message_length', 512 * 1024 * 1024)])) |
clearml-bot
pushed a commit
that referenced
this issue
Apr 12, 2023
…annel options (notice CLEARML_GRPC_var is converted into grpc.var when setting grpc channel, casing does not change) #49
@amirhmk I'm closing the issue. Please reopen if required. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello! I am trying to play around with the configs for
gRPC
for thetriton
server.I’m using the
docker-compose
setup, so not sure if the CLI will work for my usecase (perhaps passing them as env variables would work?)For instance, I’d like to set some variables like this:
Is this possible currently? I’m getting an error from gRPC that my payload is more than the limit (8MB instead of 4MB…)
#2
The text was updated successfully, but these errors were encountered: