Skip to main content
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

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
42 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
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
0 votes
1 answer
144 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
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
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
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
1 vote
1 answer
180 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
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
1 answer
116 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
392 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
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
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
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
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
1 vote
0 answers
367 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
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
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
0 votes
1 answer
472 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
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
188 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
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
-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
1 vote
2 answers
633 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

1
2 3 4 5
20