Skip to main content
Stack Overflow for Teams is now Stack Internal: See how we’re powering the human intelligence layer of enterprise AI. Read more >
Filter by
Sorted by
Tagged with
0 votes
1 answer
54 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
0 votes
1 answer
89 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
0 votes
1 answer
87 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
49 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
38 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
72 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
161 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
101 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
143 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
0 answers
99 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
76 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,103
0 votes
3 answers
144 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
106 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
94 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
0 votes
0 answers
61 views

I have a GRPC server that handles large number of requests per second. I have header interceptors, Completion and cancelled interceptors created. My understanding is that context of GRPC request would ...
Balaraj V's user avatar
0 votes
0 answers
241 views

I am working on a multithreaded application where I create a few threads. One of the threads makes a gRPC call, and midway through the frame, the thread encounters an END_OF_STREAM error while reading ...
Santosh Ippili's user avatar
1 vote
1 answer
179 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
305 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
0 answers
83 views

Here is my accounts.protobuf file package com.lyngo.account.protobuf; syntax = "proto3"; import "google/protobuf/empty.proto"; service GrpcAccountService { rpc ...
Ly Ngo's user avatar
  • 1
0 votes
0 answers
24 views

My java class @Pact(consumer = "P01819-ipa-mi") public V4Pact tradesByFilterProductTypeFXFWD(PactBuilder builder) throws InterruptedException { return builder ...
Denys Koval's user avatar
0 votes
1 answer
115 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
0 answers
126 views

I'm trying to implement an interceptor for logging in gRPC servers and clients. In the interceptor I'd like to log all the headers and trailers. I tried using the following code to read all the key-...
Mark Vincze's user avatar
  • 8,115
0 votes
1 answer
389 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
252 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
0 votes
0 answers
128 views

I am using Envoy as a proxy to forward gRPC requests to a backend gRPC service. My backend service is running on port 9090, and Envoy is listening on port 8084. When I send a gRPC request to http://...
Gorang Madaan's user avatar
0 votes
0 answers
329 views

I have one pod on GKE with Istio, which streams data using gRPC. I am streaming a lot of avro records to a client. After some time, usually max 30 minutes, the connection is reset with error: http2....
annag's user avatar
  • 136
0 votes
0 answers
184 views

I have a Spring Boot application serving HTTP requests in a multitenant architecture. For HTTP requests, client identity is extracted from a header and stored in a ThreadLocal. Since Tomcat ensures a ...
Romil Desai's user avatar
1 vote
0 answers
604 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
92 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
0 votes
0 answers
101 views

I am using the following code to send a challenge response to Google's Verify API for verification. However, I am encountering an error: Verification Failed: 400 Bad Request Response: { "error&...
ritesh kumar's user avatar
1 vote
1 answer
77 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
63 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
364 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
121 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
198 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
258 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
100 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
242 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
470 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
101 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
152 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
132 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
187 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
88 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
178 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
73 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
546 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
471 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
629 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
594 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

1
2 3 4 5
20