read_ipc_stream {arrow} | R Documentation |
Read Arrow IPC stream format
Description
Apache Arrow defines two formats for serializing data for interprocess communication (IPC):
a "stream" format and a "file" format, known as Feather. read_ipc_stream()
and read_feather()
read those formats, respectively.
Usage
read_ipc_stream(file, as_data_frame = TRUE, ...)
Arguments
file |
A character file name or URI, connection, |
as_data_frame |
Should the function return a |
... |
extra parameters passed to |
Value
A tibble
if as_data_frame
is TRUE
(the default), or an
Arrow Table otherwise
See Also
write_feather()
for writing IPC files. RecordBatchReader for a
lower-level interface.