Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
68 views

I want to watch a GRPC service's health. I can create a client and call 'grpc.health.v1.Health/Check'. I can also call 'grpc.health.v1.Health/Watch'. With grpcurl, that outputs "status": &...
whistling_marmot's user avatar
Tooling
0 votes
1 replies
64 views

the getting started page notes that Spring gRPC 1.0.x supports Spring Boot 4.0.x But, how about backwards compatibility to Spring Boot 3.x ?
patientCoder's user avatar
0 votes
1 answer
83 views

I have a microservices setup with the following services: ECOM Service API Gateway NOTIFICATION-SERVICE (Spring gRPC-based service) I’m trying to make the ECOM service communicate with the ...
Bharathwajan's user avatar
-1 votes
1 answer
146 views

Hello I am facing some issues while Integrating Grpc Client to use Netty's NIO for grpc call and handling callbacks, i want application threads to be free from tracking the status of grpc calls and ...
Rohan Sharma's user avatar
1 vote
1 answer
152 views

I am getting this error in my pom.xml file when using this build for my gRPC. Cannot resolve symbol 'os.detected.classifier'. Any advice! <build> <extensions> <!-- ...
Mahidhar Reddy's user avatar
1 vote
0 answers
68 views

I am using NettyChannelBuilder in grpc client and NettyServerBuilder in grpc server. I have created NettyServerBuilder with sslcontext with TLS1.3 and started the server as below import io.grpc....
Ganesh91's user avatar
1 vote
0 answers
49 views

I'm developing an application for macOS on Compose Desktop. Compose successfully executes Gradle tasks, but the application crashes on startup. The application must not be published to the App Store. ...
Пимонов Никита's user avatar
0 votes
0 answers
84 views

Different instances of the same backend I want to use in my gRPC Channel are hosted in different AWS regions with different DNS. I want to pass in all these different DNS at the time of Channel ...
illuminated_axis's user avatar
0 votes
0 answers
204 views

I am updating a spring boot project to version 3.4.5 with java 21. For this packages have changed from javax.* to jakarta.* I am generating Grpc endpoints with protofiles with this maven plugin: ...
Andwari's user avatar
  • 181
2 votes
0 answers
161 views

I've recently started learning how to work with gRPC in Spring Boot. I used Spring Initializr to bootstrap a new project and added the gRPC dependencies. To my surprise, the generated pom.xml included ...
MichaelM's user avatar
0 votes
1 answer
213 views

I call the grpc server with a blocking stub that returns a stream. blockingStub.send(request); The generated stub code in blockingStub looks like this java.util.Iterator<Response> send(Request ...
xtrx's user avatar
  • 35
0 votes
1 answer
137 views

Not able to consume event from salesforce platform event using camel salesforce I am using camel 4.8.0, JDK 17 and Spring boot 3.3.4 I am using the below code. from("salesforce:pubSubSubscribe:/...
user1346346's user avatar
0 votes
1 answer
109 views

I'm using implementation("net.devh:grpc-spring-boot-starter:3.1.0.RELEASE") library to do Grpc work in my java application. I followed the documentation to implement Authentication, ...
Pp88's user avatar
  • 1,113
0 votes
3 answers
268 views

I am using the new Springboot starter from org.springframework.boot (more details below) and I am able to use it to make a simple GRPC API to return Hello world. Now I was trying to upgrade the same ...
Arvind Singh Rawat's user avatar
1 vote
1 answer
119 views

I have an Open Liberty server (23.0.0.9), running Jakarta 10 with CDI 3.0 that I am running a grpc-channel with push-pull based streams to an external server. A ManagedServiceExecutor is supplied to ...
daniel strandberg's user avatar
0 votes
0 answers
111 views

In my GRPC server Context.current().toString() returns a different value everytime it is called even with in the same function for a single request. Based on https://grpc.github.io/grpc-java/javadoc/...
Balaraj V's user avatar
1 vote
1 answer
227 views

I have updated the com.google.protobuf:protoc version from 4.27.5 to 4.28.0 in my android project. The protobuf block has a defination like this protobuf { //dependency versions are defined under ...
Satyam Gondhale's user avatar
1 vote
1 answer
384 views

We have written a grpc client and server. Whenever client and server are started, first 3-5 calls take more time in establishing connection. We are running 2 pods of grpc client and 2 pods of grpc ...
Ankit Gautam's user avatar
0 votes
1 answer
164 views

I am using the Spring Boot Starter gRPC for my Reactive Spring Boot Server App Application and wanted to use a different Event Loop Group for my gRPC client (the service app talks to other services ...
Dexter Legaspi's user avatar
0 votes
1 answer
503 views

I am trying to run the demo provided at wiremock grpc page using spring boot: https://wiremock.org/docs/grpc/ I have the following configuration for the beans: @Configuration public class ...
Georgi Asparuhov's user avatar
1 vote
0 answers
335 views

I am trying to set up a GRPC client, but the default implementation does not work. Below I describe my project (Java, SpringBoot, GRPC). I have: the protofile is located separately from the server and ...
Mikle N's user avatar
  • 11
1 vote
0 answers
710 views

I want to configure a gRPC server in my Spring Boot application (Java 17), but I am encountering the following error when trying to instantiate the server: package org.xenwgram.config; import io.grpc....
xenwithu's user avatar
1 vote
0 answers
104 views

Question: We did a test to compare the performance between uds and dns. According to what said on the Internet, uds should be faster because it lacks many network layer protocols. However, the actual ...
Chao Zhang's user avatar
1 vote
1 answer
100 views

My service on Gosu language (Java 11). I write interceptor for GRPC Server. For it, I must implements next interface from GRPC library : package io.grpc; public interface ServerInterceptor { <...
MRoose's user avatar
  • 31
0 votes
1 answer
78 views

I'm trying to use the following code to create a stub: ManagedChannel channel = channel = ManagedChannelBuilder.forAddress("localhost", 41800) .usePlaintext() .build(); ...
David D's user avatar
  • 31
1 vote
0 answers
429 views

My application is built using Kotlin and Spring Boot, with the gRPC framework running on AWS EKS clusters with datadog agent installed. We utilize Datadog APM to monitor the performance of our system. ...
Erjia Li's user avatar
0 votes
1 answer
191 views

I'm building a gRPC server streaming application using Java, Spring Boot, and reactive programming that acts as a wrapper around Google Cloud Pub/Sub. The application has two methods: /publish and /...
tejas jethva's user avatar
0 votes
0 answers
219 views

I am using GRPC java 1.50 to handle Grpc communication among different components and using consul as service discovery. On client side, I am caching ManagedChannel in ConcurrentHashMap for each ...
RGoyal's user avatar
  • 175
0 votes
1 answer
301 views

Environment: Micronaut version: 4.6.3 JDK: 17 I have a rest api developed with Micronaut. Now I want to add the feature of gRPC client to this rest api for calling a gRPC server at http://localhost:...
wureka's user avatar
  • 923
0 votes
2 answers
118 views

Im using Quarkus together with io.quarkus:quarkus-opentelemetry:3.15.0. For log collection we are using Elastic and Cabana. I have been doing some performance tests and I can see 2 types of ...
Jakub Zilinek's user avatar
1 vote
1 answer
300 views

I am trying to run a Java gRPC Application on an Oracle Cloud Instance but it keeps listening only for IPv6 address $ netstat -tulp | grep 16507 (Not all processes could be identified, non-owned ...
Rishabh Bhaskar's user avatar
0 votes
1 answer
503 views

I have written this simple gRPC code that should run the commit stub on every server. Here is the code - private Boolean sendCommit(List<Transaction> allTransactions) { for (int ...
The Beast's user avatar
0 votes
1 answer
114 views

We have a customer that we have to connect their grpc services. We can create jwt token from their server. When we use this jwt token with grpcurl, we can get response successfully, but when we trying ...
Eyyüp TAŞKIN's user avatar
1 vote
1 answer
196 views

I'm using Spring Boot gRPC and encountered the problem that my set context (which I prepare in a @ServerInterceptor) is not used in exceptions at @GrpcAdvice ExceptionHandler. It handles Context....
Jonas's user avatar
  • 65
0 votes
1 answer
162 views

All client configurations work without any problems. Election class in the Jetcd library has the following observe method, void observe(ByteSequence electionName, Listener listener); With this method ...
Sefa Mert Kaya's user avatar
0 votes
1 answer
252 views

We have an application where we have a need to return Custom GRPC Status codes, as we feel the codes are limited. Is there a way we can return Custom GRPC Status code? I tried to return custom status ...
Balaraj V's user avatar
1 vote
0 answers
99 views

I am building a shaded jar that I want to run on a Kafka Connect cluster. This jar is a simple gRPC client that consumes Kafka messages from a topic then sends them to a server. However, when I run my ...
Charles Morin's user avatar
0 votes
0 answers
210 views

I don't have the jwt token I got from my backend server installed in the browser. I have the same configuration: Client - react-app (grpc-web) (192.168.3.2:3000) Proxy server envoy (is on a virtual ...
L0mchansky's user avatar
0 votes
0 answers
83 views

We are facing multiple issues during the moderate load from grpc client written in C++ to grpc server written in java. (C++ is managed by clients and not in our control) When we enabled the logs for ...
krish's user avatar
  • 1
-1 votes
1 answer
602 views

Not sure if I am missing anything but I have a code block like this ManagedChannel channel = getManagedChannel(serverId); var responseObject = ArtifactsGrpc.newBlockingStub(channel). ....
Archimedes Trajano's user avatar
0 votes
1 answer
516 views

The version of grpc-java is 1.65.1, and I'm using grpc-netty-shaded in Nacos, which is an experimental version supporting Spring Boot 3.3.1. While using native:compile, the project encountered an ...
CN Dioxide's user avatar
1 vote
2 answers
711 views

I am trying to implement gRPC into my Java Spring Boot application (Maven), after compiling the .proto file and building the project, all the classes are being created except for the service in the ...
full's user avatar
  • 11
0 votes
1 answer
716 views

I'm trying to understand the difference between MAX_CONCURRENT_STREAMS and maxConcurrentCallsPerConnection. I read that most servers set MAX_CONCURRENT_STREAMS to 100 as a default whereas ...
Uddhav Bhagat's user avatar
0 votes
1 answer
626 views

We are noticing performance issues when trying to use the bi-directional stream API call to stream data at 2000-4000 updates/second. We enabled debug logging and see that streamId is same for all the ...
Ramachandran Rajagopalan's user avatar
0 votes
2 answers
271 views

I have updated grpc from 1.58.0 to 1.64.0 and the RoundRobinLoadBalancer is gone. Where did it go? Is there an alternative? I simply tried using the "pick_first" load balancer, but that's ...
Lars Lewerenz's user avatar
1 vote
0 answers
633 views

I am trying to compile my proto into a grpc java client and a python grpc java server. I can't get the java generated class to produce the Services. The following is proto named 'myproto.proto: syntax ...
Moutabreath's user avatar
0 votes
1 answer
72 views

I'm writing a ServerInterceptor that might respond with a predefined response. In order to construct a response, I need a builder of that type but I can't find a way to get it. Here is the declaration ...
Slava Semushin's user avatar
0 votes
1 answer
135 views

I want to add and remove services to the grpc server without bringing down other services running. Usecase: Whenever I need to use grpcurl or grpcdebug for debugging purposes, these tools require like ...
djGowda's user avatar
  • 49
0 votes
0 answers
80 views

I am seeing 1-2% grpc Traffic gets dropped even after following best practices. I am using channel polling of size 10-20, best practices suggested in for polling is we have a unique channel name and ...
Shubham Hudda's user avatar
0 votes
1 answer
2k views

I've been having diffulty understanding the exact guarantees of gRPC streaming. Mostly because I have heard/read contradicting stories about it. My question is the following: If I have a stream [A, B, ...
Navid Jalali's user avatar

1
2 3 4 5
19