Apache Arrow defines two formats for serializing data for interprocess communication (IPC):
a "stream" format and a "file" format. write_ipc_stream()
and write_ipc_file() write those formats, respectively.
Arguments
- x
data.frame, RecordBatch, or Table- sink
A string file path, connection, URI, or OutputStream, or path in a file system (
SubTreeFileSystem)- ...
deprecated and ignored.
See also
write_ipc_file() for writing IPC files. write_to_raw() to
serialize data to a buffer.
RecordBatchWriter for a lower-level interface.