Relative Content

Tag Archive for c++grpc

grpc 1.62 performance regression compared with 1.55

Recently, we are performing performance test on gRPC server receiving unary RPC request. We are performing the test on a 48 core server machine with CPU E5-2650 2.20gHZ. We see that after we upgrade the grpc version from 1.55 to 1.62, we see a performance drop pretty large:
Thrroughput Result

gRPC 1.55 performance drop when client send rate increase

We have been working on a pub/sub project using gRPC in C++, we are publish messages to gRPC server with unary RPC, and receive the message with server streaming RPC call. We implement the server with cq-based async way, just like the qps test server in grpc repo, and the client will issue the unary RPC with a fix interval. We run the test on a 48 core server machine with CPU E5-2650 2.20gHZ.
perf test repo