grpc-node
grpc-node copied to clipboard
gRPC for Node.js
### Problem description The client hangs, no callback form server, but when use grpc 1.24.11 there is no problem. and if don't use ssl ,there is no problem too. ###...
My team just updated our internal tools to use grpc-js in lieu of grpc. A primary motivation for this is that we want to be able to use later versions...
### Problem description We are having some problems with the load balancing in `grpc-js`. We are seeing uneven distribution of calls to our service pods, which ends up sometimes overloading...
Continuation of https://github.com/grpc/grpc-node/issues/1969 I pushed a sample client/server pair to this repo: https://github.com/thegleb/grpc-debug. It appears the condition is triggered for us when the server responds with an extremely long error...
### Problem description While creating a solution to dynamically set the `deadline` on every call, I took this route: [`callInvocationTransformer`](https://grpc.github.io/grpc/node/grpc.Client.html#~callInvocationTransformer) => [`callProperties`](https://grpc.github.io/grpc/node/grpc.Client.html#~CallProperties) => [`callOptions`](https://grpc.github.io/grpc/node/grpc.Client.html#~CallOptions) However, the docs say that the...
### Problem description When writing to a client writable stream with `stream.write` the callback never receives an error if one occurs. ``` stream.write(requestThatWillCauseError, (error) => { // error is undefined...
### Is your feature request related to a problem? Please describe. To be able to build a buildkit frontend, we have to connect to a GRPC server over stdin/stdout https://github.com/moby/buildkit/blob/914e64243dbaa2ccb8798d732c6f7bafbb708eaa/frontend/gateway/grpcclient/client.go#L390-L392...
### Is your feature request related to a problem? Please describe. A gRPC channel has observable connection states: `CONNECTING`, `READY`, `TRANSIENT_FAILURE`, `IDLE`, and `SHUTDOWN` (as per https://grpc.github.io/grpc/core/md_doc_connectivity-semantics-and-api.html). Specifically, the channel's...
### Problem description When marking a custom field option as optional, `loadSync` throws a the following error ``` TypeError: Cannot read properties of undefined (reading 'indexOf') ``` Note this error...
I am trying to send array of 1000ish strings and some 3-5 other string fields as grpc metadata but it is letting the stream hang and responses are not returned....