pyarrow.ipc.IpcReadOptions¶
- class pyarrow.ipc.IpcReadOptions(bool ensure_native_endian=True, *, bool use_threads=True, list included_fields=None)¶
Bases:
_Weakrefable
Serialization options for reading IPC format.
- Parameters:
- ensure_native_endianbool, default
True
Whether to convert incoming data to platform-native endianness.
- use_threadsbool
Whether to use the global CPU thread pool to parallelize any computational tasks like decompression
- included_fields
list
If empty (the default), return all deserialized fields. If non-empty, the values are the indices of fields to read on the top-level schema
- ensure_native_endianbool, default
- __init__(*args, **kwargs)¶
Methods
__init__
(*args, **kwargs)Attributes
- ensure_native_endian¶
- included_fields¶
- use_threads¶