Uploaded image for project: 'Apache Arrow'
  1. Apache Arrow
  2. ARROW-10939

[C#][FlightRPC] incompatible with java client for empty record batches

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • None
    • None
    • C#, FlightRPC
    • None

    Description

      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 257-301 (the error is that it wont accept a null body for a record batch)

      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.

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              Östman Alexander
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated: