grpc Questions

0

I'm currently working on enhancing the robustness and clarity of communication between gRPC services and clients, especially around the concept of operation degradations. In many scenarios, operati...
Clein asked 5/2 at 18:12

7

Solved

I try to understand protobuf and gRPC and how I can use both. Could you help me understand the following: Considering the OSI model what is where, for example is Protobuf at layer 4? Thinking thro...
Tangy asked 18/1, 2018 at 21:3

2

Why can't linker find absl references? Configuration: Raspberry Pi 4 Model B (AArch64) | Ubuntu Server 20.04 | Clang++ (llvm 13.0.0) | GRPC v1.41.1 (libprotoc 3.17.3) Installed GRPC with these opti...
Orelia asked 6/11, 2021 at 18:3

7

Solved

I can't make a request using Google TTS Client library in java. Each time it throws a bunch of exceptions. I just try to get a list of available voices. GoogleCredentials creds = null; TextToS...
Costrel asked 2/4, 2019 at 21:48

1

Why/when use optional over google/protobuf/wrappers.proto in C# when need to map nullable fields? Let's say I have the following proto file: syntax = "proto3"; import "google/protob...
Disunity asked 9/1 at 19:22

2

Solved

I work on .NET core 7.0 syntax = "proto3"; option csharp_namespace = "IndustryAPI.Protos"; message ListOfStrings { repeated string strings = 1; } enum VendorMode { VendorMo...
Slice asked 19/4, 2023 at 4:46

4

I followed the gRPC quickstart document in this link https://grpc.io/docs/languages/go/quickstart/ and while regenerating the gRPC code i am getting error ( Unknown flag: --go_opt) as shown below. ...
Esmeraldaesmerelda asked 15/7, 2020 at 6:46

4

Solved

I'll be immensly grateful if you'd tell me what's causing the problem and how to fix it. P.S. Sorry for posting all the code, it's just I'm not sure which exact part is relevant to the problem. Her...
Breeding asked 29/11, 2021 at 9:6

5

I would like to use Python unittest to write tests for my GRPC server implementation. I have found grpcio-testing package but I could not find any documentation how to use this. Let's say that I h...
Eberhard asked 10/8, 2018 at 18:57

3

Solved

I want know about good practices with golang and gRPC and protobuf. I am implementing the following gRPC service service MyService { rpc dosomethink(model.MyModel) returns (model.Model) { optio...
Scifi asked 2/8, 2017 at 8:13

3

Working on Grpc Bidirectional Streaming, when i try to run grpc, getting below error Connection Error io.netty.handler.codec.http2.Http2Exception: HTTP/2 client preface string missing or corrupt. ...
Ventilator asked 8/8, 2017 at 14:39

3

Solved

I'm new to gRpc and now learning this tech I'm wondering if gRpc can replace SignalR for updating notification bar on my client-side app (React). Is that the case? or should I keep using SignalR f...
Shaduf asked 4/4, 2020 at 12:6

1

I have a c# client and server and get an unhandled exception of type Grpc.Core.RpcException with Status(StatusCode=Unknown, Detail="Exception was thrown by handler.") when invoking the SendMessage ...
Camisole asked 23/10, 2018 at 14:16

7

Solved

I'm working with PHP library of Google Cloud Firestore, it requires me to install and enable the gRPC extension.. I've read the guide which says Windows users can download and enable DLLs from ...
Dictation asked 7/5, 2018 at 21:33

1

Solved

While using Cloud Functions, we've encountered the following error: Timestamp: 2023-10-21 18:50:18.281 EEST Function: v8-specialist ---updateUserByID finish update--- Caused by: Error at WriteBa...
Traveller asked 21/10, 2023 at 17:23

7

Solved

I am getting error while installing grpcio using pip install grpcio on my windows machine.I read here - https://github.com/grpc/grpc/issues/17829 that it may be due to error in a version of setupto...
Coot asked 29/5, 2019 at 9:54

3

The problem: I am getting this error while receiving message in grpc: rpc error: code = ResourceExhausted desc = grpc: received message larger than max (8653851 vs. 4194304) What I tried: I g...
Woodenhead asked 26/3, 2019 at 16:49

2

I am writing a gRpc server in C# and I wanted to add automatic recovery/retry implementation if server is down for any reason. Upon researching, i came across interceptors and got excited but looks...
Forgive asked 7/7, 2020 at 6:13

3

I'm trying to send a grpc request and I'm expected to receive stream of message back. Instead I'm receiving a response as <_MultiThreadedRendezvous object>. Can anyone help me to understand w...
Irmgard asked 14/8, 2020 at 12:55

0

The error I get: io.grpc.ManagedChannelRegistry$ProviderNotFoundException: io.grpc.okhttp.OkHttpChannelProvider: Unable to load private key: Neither RSA nor EC worked I am trying to load pass the ...
Powered asked 6/9, 2023 at 15:24

1

i am trying to use grpc in my project but i have a problem, my problem is at grpc client side i want to use blockingStub however, it turns NullPointerException. here is my classes: common-service B...
Unhurried asked 4/9, 2023 at 15:1

2

Solved

I am trying to understand how to handle a grpc api with bidirectional streaming (using the Python API). Say I have the following simple server definition: syntax = "proto3"; package simple; serv...
Corinnacorinne asked 6/3, 2019 at 17:50

3

Solved

If a gRPC client starts before the server, it exits with an exception. The application I am working on starts a bunch of servers and clients (near) simultaneously, however, and I have to be robust ...
Laurinda asked 18/8, 2017 at 14:48

2

Solved

Does anyone know how to compile *.proto files for grpc application in maven? This is how I'm compiling protobuf in maven - (old way, using installed protoc compiler, excerpt from pom.xml): <b...
Lilly asked 11/3, 2016 at 7:12

1

I am trying to implement asynchronous server-side streaming using C++. but I am not able to find any good example for the same. I am having a hard time reading stream asynchronously. Server Code ...
Venice asked 22/10, 2019 at 5:28

© 2022 - 2024 — McMap. All rights reserved.