[grpc-io] Re: Error when I run nmake to build php-src along with grpc php extension

2025-01-28 Thread aravind jayanthi
Just following up on the issue. On Friday, January 17, 2025 at 4:27:56 PM UTC-5 aravind jayanthi wrote: > Hello Team, > > I am trying to compile and built php-src code on Windows docker image > along with some php extensions to build a consistent image for my pipeline. > When I am trying to bui

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

2025-01-28 Thread 'Larry Safran' via grpc.io
You could define your message as a byte array instead of the type you really want to send. Then use ProtoUtils.marshaller(Type.getDefaultInstance()).stream(proto) to turn the proto you are sending into a byte stream which is easy to chunk. Then on the other side, use ProtoUtils.marshaller(Type.ge

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

2025-01-28 Thread 'Kannan Jayaprakasam' via grpc.io
The 2 GB serialization limit comes protobuf itself so there is nothing we can do about it. You need to write logic to break your layers at possibly arbitrary places not just at layer boundaries, so that each chunk is <= 2GB and regather them on the receiver side with your service code logic. On

[grpc-io] Re: GRPC Java Streaming client cancelled Error

2025-01-28 Thread 'Kannan Jayaprakasam' via grpc.io
Can you format the code so it is readable and provide the stacktrace? On Thursday, January 23, 2025 at 11:39:21 AM UTC+5:30 Ankit Rathod wrote: > `import io.grpc.ManagedChannel; import io.grpc.ManagedChannelBuilder; > import io.grpc.Status; import io.grpc.stub.StreamObserver; import > java.util

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

2025-01-28 Thread 'Gregory Cooke' via grpc.io
Hello, Thank you for the extra detail - given that, unfortunately I don't think there's currently a good solution to what you are asking for. It would have to be a new feature addition to gRPC - you can open an issue on github for the feature request. The more evidence we have suggesting this i