grpc
grpc copied to clipboard
gRPC clients and servers in R
The client needs to define the type of struct since instances were already allocated in the definition of the grpc_metadata array. Also, the default nullptr's can be removed from the...
I've set up a Docker container running Ubuntu 21. I've followed the instructions under installation to make sure the necessary package dependencies are installed and that grpc is available. I...
Is it possible to get the package installed on MS Windows . I did run into the following error: ``` > devtools::install_github("nfultz/grpc") Downloading GitHub repo nfultz/grpc@master from URL https://api.github.com/repos/nfultz/grpc/zipball/master Installing...
I did the following updates to solve the issue related to client-side deadline. I hope that these updates solve the problem. I tried my updated code on the example (Helloserver...
Hello, I'm trying to include this library in a suit of grpc benchmarks. I have an issue with the server, when I send requests from a `ghz` client it fails...
This update Closes #29 It uses readProtoFiles2 which enables importing files from other packages by allowing the user to provide a path (protoPath)
I have a proto file that has a few imports on proto files in other packages and readProtoFiles simply blows up with errors because it doesn't know where to find...
Currently, RPC calls have a client-side deadline of 5 seconds, hard-coded in fetch() src/client.cc. We have some RPCs that take longer than that, that we'd like to call from R,...
Right now, server mode can only handle one client at a time - the first client must hang up before the server can begin processing the second request. To fix...
@nfultz, did you see any issues with letting the service run for a longer time? Everything seems to work perfectly fine while running a grpc service in Docker for a...