You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make sure to fork this template and run yarn generate in the terminal.
Please make sure Mesh package versions under package.json matches yours.
2. A failing test has been provided
3. A local solution has been provided
4. A pull request is pending review
Describe the bug
When using grpahql-mesh with the grpc handler when making a request if the grpc response is greater than the default max size there will be an error thrown : "8 RESOURCE_EXHAUSTED: Received message larger than max (6771289 vs. 4194304)".
This is caused by the grpc client default max_receive_message_length : 4194304 : grpc/grpc-node#1093.
The only fix for this issue would be to pass a "grpc.max_receive_message_length" config option to the grpc client but grpahql-mesh doesn't support this.
To Reproduce Steps to reproduce the behavior:
To reproduce make a request where the response size is greater than 4194304
Issue workflow progress
Progress of the issue based on the
Contributor Workflow
Github,
Stackblitz
or
CodeSandbox
Describe the bug
When using grpahql-mesh with the grpc handler when making a request if the grpc response is greater than the default max size there will be an error thrown : "8 RESOURCE_EXHAUSTED: Received message larger than max (6771289 vs. 4194304)".
This is caused by the grpc client default max_receive_message_length : 4194304 : grpc/grpc-node#1093.
The only fix for this issue would be to pass a "grpc.max_receive_message_length" config option to the grpc client but grpahql-mesh doesn't support this.
To Reproduce Steps to reproduce the behavior:
To reproduce make a request where the response size is greater than 4194304
Expected behavior
A way to pass config options to the grpc client
Or a way to pass a custom client to the handler
Environment:
@graphql-mesh/...
:Additional context
The text was updated successfully, but these errors were encountered: