#include <cudf/io/parquet.hpp>
#include <cudf/io/types.hpp>
#include <cudf/types.hpp>
#include <cudf/utilities/export.hpp>
#include <queue>
Go to the source code of this file.
|
| class | cudf::io::parquet::experimental::chunked_parquet_reader |
| | The chunked parquet reader class to read a Parquet source iteratively in a series of tables, chunk by chunk. Each chunk is prepended with a row index column built using the specified row group offsets and row counts. The resultant table chunk is filtered using the supplied serialized roaring64 bitmap deletion vector and returned. More...
|
| |
|
| table_with_metadata | cudf::io::parquet::experimental::read_parquet (parquet_reader_options const &options, cudf::host_span< cuda::std::byte const > serialized_roaring_bitmap, cudf::host_span< size_t const > row_group_offsets, cudf::host_span< size_type const > row_group_num_rows, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=rmm::mr::get_current_device_resource_ref()) |
| | Reads a table from parquet source, prepends an index column to it, deserializes the specified 64-bit roaring bitmap deletion vector and applies it to the read table. More...
|
| |
| table_with_metadata | cudf::io::parquet::experimental::read_parquet (parquet_reader_options const &options, cudf::host_span< cudf::host_span< cuda::std::byte const > const > serialized_roaring_bitmaps, cudf::host_span< size_type const > deletion_vector_row_counts, cudf::host_span< size_t const > row_group_offsets, cudf::host_span< size_type const > row_group_num_rows, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=rmm::mr::get_current_device_resource_ref()) |
| | Reads a table from parquet source, prepends an index column to it, deserializes the specified 64-bit roaring bitmap deletion vectors and applies them to the read table. More...
|
| |