| [ Web Proxy ] |
| Viewing: https://arrow.apache.org/docs/python/generated/../api/../../cpp/../r/reference/read_ipc_stream.html | [Back] [Original] |
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.
A character file name or URI, connection, raw vector, an
Arrow input stream, or a FileSystem with path (SubTreeFileSystem).
If a file name or URI, an Arrow InputStream will be opened and
closed when finished. If an input stream is provided, it will be left
open.
Should the function return a tibble (default) or
an Arrow Table?
extra parameters passed to read_feather().
A tibble if as_data_frame is TRUE (the default), or an
Arrow Table otherwise
If reading from an untrusted source, you can validate the data by reading
with as_data_frame = FALSE and calling $ValidateFull() on the Table
before processing.
write_feather() for writing IPC files. RecordBatchReader for a
lower-level interface.
| Web Proxy Viewer | New URL | Original Page |