Skip to main content
Filter by
Sorted by
Tagged with
2 votes
2 answers
109 views

I have been using .proto files without any issue with C# and Java. I have more than hundred proto files spread across a folder hierarchy. I can compile in Visual Studio and in JetBrains IntelliJ Idea. ...
saka's user avatar
  • 43
0 votes
0 answers
31 views

I am using https://github.com/eclipse-kuksa/kuksa-mock-provider in my local to try. My kuksa broker is up and running fine. When do GET for a actuator path 'Vehicle.Body.Windshield.Front.Wiping.System....
user12's user avatar
  • 339
0 votes
1 answer
242 views

I’m using LangGraph (LangChain + graph orchestration) and want to run each node (agent) in a separate container. Goals: Allow a node to serve multiple graphs (not tied to a single graph). Make nodes ...
Neo_clown's user avatar
2 votes
0 answers
54 views

The typical approach for gRPC AsyncIO is await server.start() try: await server.wait_for_termination() except: ... But I was wondering rather than dealing with it via a hard stop because ...
Archimedes Trajano's user avatar
2 votes
1 answer
223 views

I am trying to setup a larger bazel infrastructure to Create .py files from a .proto file for gRPC using rules_proto_grpc_python Run the server code that implements the interfaces defined in 1 via a ...
kgully's user avatar
  • 682
0 votes
1 answer
100 views

I am in corporate environment. I use gRPC as RPC means to implement a workflow automation. Some of the messages do implement one-directional streaming, typically for uploading/downloading files. I am ...
minice's user avatar
  • 81
0 votes
1 answer
264 views

I am quite deperate because I simply cannot find a solution for my problem. Scenario My python application acts as a gRPC server. The request that is made is a server side stream so the client asks ...
tiko's user avatar
  • 17
0 votes
0 answers
296 views

I am trying to implement a gRPC client as a source for my Apache Flink application. The goal is to read streaming data from a gRPC event listener (the gRPC client is salesforce PubSub Api for Change ...
R_M_R's user avatar
  • 63
1 vote
1 answer
701 views

For protobuf there are these 2 documents detailing for how long a version is supported (maintained) and what it the compatibility between code generated with some version when used with a runtime with ...
luca's user avatar
  • 121
0 votes
1 answer
149 views

I want to create a response message in grpc with the following format: message Match { int32 index = 1; google.protobuf.Struct match = 2; google.protobuf.Struct status = 3; } I have a ...
Mahsa Fathi's user avatar
0 votes
1 answer
103 views

I am using djangogrpcframework 0.2.1 and I am trying to write a interceptor to see if a key is present in the request metadata. I also log somethings to see the progress of the interceptor. from grpc ...
Mahsa Fathi's user avatar
2 votes
1 answer
673 views

I am trying to create a simple gRPC service with python, using this code: import grpc import classification_pb2 import classification_pb2_grpc from io import BytesIO class ClassificationClient: ...
Cj Ryan's user avatar
  • 21
1 vote
1 answer
981 views

I'm encountering an issue when trying to build my Docker image. The error message I receive is: TypeError: Couldn't build proto file into descriptor pool: duplicate file name opentelemetry/proto/...
Abhi Kanimilli's user avatar
0 votes
1 answer
607 views

I'm running a Python 3.8 app that is using some proto generated from a private repo. This integration was working until the generated code used the 5.27.0 version. The error I'm getting is something ...
Xavier Garzon's user avatar
0 votes
1 answer
225 views

The usage summary for the --decode option when --help is called with grpc_tools.protoc mentions that the option reads some binary from the standard input and writes it as text to the standard output. ...
lauragrass's user avatar
0 votes
2 answers
1k views

Hi i have a question on how to use the custom package path when calling grpc_tools.protoc My project structure is the following C:\temp\test caller.py --proto --foo.proto --bar....
djdealer's user avatar
0 votes
1 answer
100 views

Airflow's GrpcOperator supports passing template variables in the data field. However, the protobuf-generated message object that needs to go into the data field is evaluated at parse time, which ...
McPeanutbutter's user avatar
0 votes
0 answers
1k views

I am testing a gRPC API, written in the GO language. My tests are written in Python (using grpcio lib). I need to send gRPC requests over HTTPS (using secure_channel(), as far as I understand), but ...
Костя's user avatar
0 votes
1 answer
331 views

I can't find an example implementation of a logging interceptor for python that measures the time it takes to process a request. I want to measure how long it takes to process a request on the server ...
Vyacheslav1557's user avatar
0 votes
1 answer
842 views

There is a situation where I need to implement 2 versions of the grpc API on my server. How can I do this? syntax = "proto3"; package greet.v1; will help me to add versioning to my pb2 ...
nagibator_archivator's user avatar
0 votes
1 answer
793 views

I'm attempting to parse a datetime element into a protobuf Timestamp in Python since Google Cloud Optimization V1 mandates this format for all datetime fields. However, I've encountered difficulties ...
Ketterle's user avatar
-1 votes
1 answer
388 views

I have Python server and client in gRPC. After adding ClientInterceptor I can't receive messages from unary_stream method from the server on client side. On the server side I can see that stream is ...
Afrodeziak's user avatar
1 vote
0 answers
772 views

My application was working a few weeks ago on Ubuntu Linux. It since has stopped working. I am now just trying to get anything to work from google, which works on my development windows PC. The ...
DJW's user avatar
  • 11
0 votes
1 answer
467 views

I created a grpc server written in python. When ther is an error, I need to raise an exception in the server, this function in grpc/_servery.py fails with the raised exception. This is causing the ...
rollingbees's user avatar
0 votes
1 answer
634 views

We want to use GRPC config with both timeout and retryPolicy. Config looks like { "methodConfig": [ { "name": [ { "...
jacker123's user avatar

1
2 3 4 5
9