[grpc-io] Re: Inquiry regarding chunking in gRPC

2025-01-27 Thread Saurav Pawar
Just a follow up. On Friday, January 24, 2025 at 10:57:51 PM UTC+4 Saurav Pawar wrote: > Hello, hope everything is well with you. > > I am currently using grpc for communication of LLMs (large language > models) having 1 to 7 billion parameters. I know that there is a 2 GB > serialization limit

[grpc-io] Re: gRPC-C++: Logging SSL handshake failures

2025-01-27 Thread 'Gregory Cooke' via grpc.io
Hey, Can you please give me a little more detail around exactly what you're trying to do and looking to log? Are you trying to do it server side or client side? In the meanwhile, https://github.com/grpc/grpc/blob/master/TROUBLESHOOTING.md has info about more verbose logging - it further links

[grpc-io] Re: gRPC-C++: Logging policy based Authorization failures

2025-01-27 Thread 'Mark D. Roth' via grpc.io
There is an experimental audit logging API you can use for this. See gRFC A59 for details. The actual exposed C++ API for you to use is here .

[grpc-io] Re: gRPC python server and tpm2 engine

2025-01-27 Thread 'Sreenithi Sridharan' via grpc.io
Hi, Apologies for the late response. Looks like we had missed this conversation thread somehow. I found this comment from an old Github issue that discusses how to use OpenSSL engine with gRPC Python but using a source build

[grpc-io] Re: gRPC-C++: Logging SSL handshake failures

2025-01-27 Thread 'Rameshreddy Mudhireddy' via grpc.io
hi Gregory, Thank you for the response. This is for server side. On server side I would like log an event/maintain counters when a client authentication fails and log details like subject, CN, spiffe, etc from the client certificate that was being rejected. Regarding GRPC_TRACE option, once tu