[grpc-io] gRPC 1.7.2 Assert issue

2024-01-18 Thread Shivteja Ayyagari
Hello, I am facing one random GRP Assert issue where in grpc_server_shutdown_and_notify is crashing on assert of: GPR_ASSERT

[grpc-io] GPR_ASSERT in grpc_server_shutdown_and_notify in grpc 1.7.2

2024-01-18 Thread Shivteja Ayyagari
My code is hitting crash in grpc_server_shutdown_and_notify . Apparently the CQ has pending_events =0, shutdown_called = True and things queued as some positive value. When the

[grpc-io] Re: GRPC C++ request spent > 2s from client to server

2024-01-18 Thread Frank Yu
Hi Veb, Will it get logged into a log file or on the console? I tried to set the environment variables but could not find the log. Thanks 在2023年12月19日星期二 UTC-8 11:02:06 写道: > You can use environment variables to get more gRPC logging; See >

Re: [grpc-io] Re: GRPC C++ request spent > 2s from client to server

2024-01-18 Thread Frank Yu
Hi Craig, Thanks for your responding! The Grpc Client will be on a proxy service so logically we could maintain a single Channel/Stub for all the communication between the client and server. Once we start the proxy service, we could send a request to lazily initiate the connection. But here's

[grpc-io] What version of c-ares is gRPC running?

2024-01-18 Thread Nicholas Chammas
How can I tell what version of c-ares gRPC is running? I am running a Spark Connect program which uses gRPC under the hood. I tried enabling some gRPC debug information as follows: GRPC_TRACE=cares_resolver,cares_address_sorting,dns_resolver GRPC_VERBOSITY=DEBUG python my-script.py But even

[grpc-io] Re: Issues with grpc-objc

2024-01-18 Thread 'Eryu Xia' via grpc.io
Thanks for asking! Could you check if your server is using SSL properly? If not, you could specify the following option: *options.transport = GRPCDefaultTransportImplList.core_insecure* As in this example below: