Skip to content

[Java] Add generalized stream writer and reader interfaces that are decoupled from IO / message framing #16639

@asfimport

Description

@asfimport

cc @julienledem @elahrvivaz @nongli

The ArrowWriter https://github.com/apache/arrow/blob/master/java/vector/src/main/java/org/apache/arrow/vector/file/ArrowWriter.java accepts a WriteableByteChannel where the stream is written

It would be useful to be able to support other kinds of message framing and transport, like GRPC or HTTP. So rather than writing a complete Arrow stream as a single contiguous byte stream, the component messages (schema, dictionaries, and record batches) would be framed as separate messages in the underlying protocol.

So if we were using ProtocolBuffers and gRPC as the underlying transport for the stream, we could encapsulate components of an Arrow stream in objects like:

message ArrowMessagePB {
  required bytes serialized_data;
}

If the transport supports zero copy, that is obviously better than serializing then parsing a protocol buffer.

We should do this work in C++ as well to support more flexible stream transport.

Reporter: Wes McKinney / @wesm
Assignee: Bryan Cutler / @BryanCutler

Related issues:

PRs and other links:

Note: This issue was originally created as ARROW-1047. Please see the migration documentation for further details.

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions