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
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
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
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
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