[grpc-io] L119 : Adding Typing to Python Sync API

2024-10-22 Thread 'Sourabh Singh' via grpc.io
I've written a proposal to add typings support to gRPC Python https://github.com/grpc/proposal/pull/459/files Feedback welcome -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this group and stop receiving emails from it, send a

[grpc-io] Re: channel_ready_future blocks and doesn't honour the timeout specified

2024-11-17 Thread 'Sourabh Singh' via grpc.io
Hi Bijendra Singh, Can you provide more details of your issue. - Which OS you're on - grpcio version - share a sample client and server script to repro the issue Thanks On Monday, November 11, 2024 at 10:11:30 PM UTC+5:30 Bijendra Singh wrote: > Hi Team- My below grpc channel creation blocks f

[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