Re: [grpc-io] grpc vs rest benchmark

2023-09-08 Thread Pushpak Mittal
etResult(number * number).build() >> >> ); >> >> responseObserver.onCompleted(); >> >> } >> >> >> On Thursday, 23 February 2023 at 23:05:41 UTC+5:30 Eric Anderson wrote: >> >>> Oops. Failed to cc the mailing list. >>> >

Re: [grpc-io] grpc vs rest benchmark

2023-02-27 Thread 'Eric Anderson' via grpc.io
gt; Oops. Failed to cc the mailing list. >> >> There was a reply to this saying the JVM was warm. I maintained that >> without the actual benchmark code it is hard to diagnose. >> >> -- Forwarded message - >> From: Eric Anderson >> Date: Tue, Feb 21

Re: [grpc-io] grpc vs rest benchmark

2023-02-26 Thread shobhit agarwal
to cc the mailing list. > > There was a reply to this saying the JVM was warm. I maintained that > without the actual benchmark code it is hard to diagnose. > > -- Forwarded message - > From: Eric Anderson > Date: Tue, Feb 21, 2023 at 9:08 AM > Subject: Re: [g

Fwd: [grpc-io] grpc vs rest benchmark

2023-02-23 Thread 'Eric Anderson' via grpc.io
Oops. Failed to cc the mailing list. There was a reply to this saying the JVM was warm. I maintained that without the actual benchmark code it is hard to diagnose. -- Forwarded message - From: Eric Anderson Date: Tue, Feb 21, 2023 at 9:08 AM Subject: Re: [grpc-io] grpc vs rest

Re: [grpc-io] grpc vs rest benchmark

2023-02-17 Thread shobhit agarwal
Is it due to running test on windows?? On Thursday, 16 February 2023 at 21:04:48 UTC+5:30 Terry Wilson wrote: > In case you are not already aware of them, you might be interested in the > benchmarks the gRPC team maintains: > https://grpc.io/docs/guides/benchmarking/ > > You will find a link

Re: [grpc-io] grpc vs rest benchmark

2023-02-16 Thread 'Terry Wilson' via grpc.io
In case you are not already aware of them, you might be interested in the benchmarks the gRPC team maintains: https://grpc.io/docs/guides/benchmarking/ You will find a link there to a dashboard with performance history as well as to the repo

Re: [grpc-io] grpc vs rest benchmark

2023-02-16 Thread shobhit agarwal
Thanks for replying, I am using the code from below article: https://www.techgeeknext.com/spring-boot/spring-boot-grpc-example#google_vignette It's spring boot application. Even for single request grpc is response time is 100 ms and REST is taking 12 ms only. On Thursday, 16 February 2023

Re: [grpc-io] grpc vs rest benchmark

2023-02-16 Thread Gordan Krešić
On 16. 02. 2023. 14:38, Gordan Krešić wrote: I did similar test about a month ago, check the thread "gRPC performance (Java)": https://groups.google.com/g/grpc-io/c/4-bfxJDc7_s Over there you even have a link to a repo with sample projects I used to test. Forgot to mention: check repo from

[grpc-io] grpc vs rest benchmark

2023-02-16 Thread shobhit agarwal
I have written sample program to test perfromance of rest vs grpc, but in my test rest is faster than grpc. load test 10k request with 100 req parallel, sample request and response is as below Req: { "emp_id": "34" } Resp: { "emp_id": "34", "name": "abc", "role": "USER" }