[grpc-io] Re: A few questions as beginner to gRPC

2024-11-27 Thread Prince Roshan
Saurabh, could you clarify where the GIL became a bottleneck in your use case? I'd also love to know more about the server setup. Did the gRPC team conduct any benchmarks beyond the documented ones , like memory profiling or CPU usage analysis, for s

[grpc-io] Re: A few questions as beginner to gRPC

2024-11-27 Thread 'Sourabh Singh' via grpc.io
1. Is gRPC in Python good enough to support several thousands of long live concurrent connections? - Python's Global Interpreter Lock (GIL) can limit the performance of a single gRPC server process. - with horizontal scaling you might still achieve the scale. - Language choice will depend on te