You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Alexander (Jira)" <ji...@apache.org> on 2020/12/16 12:54:00 UTC

[jira] [Commented] (ARROW-10939) [C#][FlightRPC] incompatible with java client for empty record batches

    [ https://issues.apache.org/jira/browse/ARROW-10939?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17250284#comment-17250284 ] 

Alexander commented on ARROW-10939:
-----------------------------------

[~eerhardt] since you reviewed the flight code, this is something I discovered. Wondered if you could give some input if you have time.

In my opinion this should probably be solved in the java client, but I were thinking of making a "ugly" fix for the csharp code so its atleast compatible with java client as it is right now and it can be removed later. This is because the java client has quite a lot more custom code and a change there will probably take some time.

I will send in a PR atleast I think and we can see if its something that should be included or not.

> [C#][FlightRPC] incompatible with java client for empty record batches
> ----------------------------------------------------------------------
>
>                 Key: ARROW-10939
>                 URL: https://issues.apache.org/jira/browse/ARROW-10939
>             Project: Apache Arrow
>          Issue Type: Bug
>          Components: C#, FlightRPC
>            Reporter: Alexander
>            Priority: Major
>
> An error has been found when one sends an empty record batch from C# server and tries to read it with the java client.
> From investigation the java client requires the protobuf tags to be sent in the message even though it is empty. Java code can be seen here:
> [https://github.com/apache/arrow/blob/master/java/flight/flight-core/src/main/java/org/apache/arrow/flight/ArrowMessage.java]
> Line 285-294
> Normal functionality of gRPC is to exclude the entire tag if an object is empty, example code from generated csharp:
> if (DataBody.Length != 0)
> { output.WriteRawTag(194, 62); output.WriteBytes(DataBody); }
> To fix this so the csharp version is compatible with the java client requires a non empty flight data body must be sent or at least the tag of the body.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)