#include <cudf/io/detail/orc.hpp>#include <cudf/io/types.hpp>#include <cudf/table/table_view.hpp>#include <cudf/types.hpp>#include <cudf/utilities/export.hpp>#include <cudf/utilities/memory_resource.hpp>#include <memory>#include <optional>#include <string>#include <unordered_map>#include <utility>#include <vector>类 | |
| class | cudf::io::orc_reader_options |
用于 read_orc() 的设置。 更多... | |
| class | cudf::io::orc_reader_options_builder |
用于 read_orc() 的构建设置。 更多... | |
| class | cudf::io::chunked_orc_reader |
| 块状 ORC 读取器类,用于以块为单位迭代地将 ORC 文件读取到一系列表中。 更多... | |
| class | cudf::io::orc_writer_options |
用于 write_orc() 的设置。 更多... | |
| class | cudf::io::orc_writer_options_builder |
用于 write_orc() 的构建设置。 更多... | |
| class | cudf::io::chunked_orc_writer_options |
用于 write_orc_chunked() 的设置。 更多... | |
| class | cudf::io::chunked_orc_writer_options_builder |
用于 write_orc_chunked() 的构建设置。 更多... | |
| class | cudf::io::orc_chunked_writer |
| 块状 ORC 写入器类,用于以块状/流式形式写入 ORC 文件。 更多... | |
命名空间 | |
| cudf | |
| cuDF 接口 | |
| cudf::io | |
| IO 接口。 | |
函数 | |
| table_with_metadata | cudf::io::read_orc (orc_reader_options const &options, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| 将 ORC 数据集读取到一组列中。 更多... | |
| void | cudf::io::write_orc (orc_writer_options const &options, rmm::cuda_stream_view stream=cudf::get_default_stream()) |
| 将一组列写入 ORC 格式。 更多... | |
变量 | |
| constexpr size_t | cudf::io::default_stripe_size_bytes = 64 * 1024 * 1024 |
| 64MB 默认 ORC 条带大小 | |
| constexpr size_type | cudf::io::default_stripe_size_rows = 1000000 |
| 1M 行 默认 ORC 条带行数 | |
| constexpr size_type | cudf::io::default_row_index_stride = 10000 |
| 10K 行 默认 ORC 行索引步长 | |