-
RESOURCE_EXHAUSTED: Bandwidth exhausted How to set in RR, both In JS can be does as follows: const grpc = require('@grpc/grpc-js');
const client = new YourServiceClient('localhost:50051', grpc.credentials.createInsecure(), {
'grpc.max_send_message_length': 10 * 1024 * 1024, // 10 MB
'grpc.max_receive_message_length': 10 * 1024 * 1024 // 10 MB
}); |
Beta Was this translation helpful? Give feedback.
Answered by
rustatian
May 2, 2025
Replies: 1 comment 5 replies
-
Hey @route33 👋🏻 |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You may set these options in .rr.yaml for RR, but not for the PHP client inside the worker. RR does not know anything about the PHP Workers (even that they are PHP workers), they're completely independent from RR (except receiving payloads from RR).