| 命名空间 | 类型定义 | 函数
orc_metadata.hpp 文件参考

cuDF-IO 自由形式 API 更多...

#include <cudf/io/orc_types.hpp>
#include <cudf/io/types.hpp>
#include <cudf/utilities/export.hpp>
#include <optional>
#include <variant>
#include <vector>

查看此文件的源代码。

struct  cudf::io::raw_orc_statistics
 包含列名和原始文件级和条带级统计信息的缓冲区。 更多...
 
struct  cudf::io::minmax_statistics< T >
 包含可选最小值和最大值的列统计信息基类。 更多...
 
struct  cudf::io::sum_statistics< T >
 包含可选总和的列统计信息基类。 更多...
 
struct  cudf::io::integer_statistics
 整数列的统计信息。 更多...
 
struct  cudf::io::double_statistics
 浮点列的统计信息。 更多...
 
struct  cudf::io::string_statistics
 字符串列的统计信息。 更多...
 
struct  cudf::io::bucket_statistics
 布尔列的统计信息。 更多...
 
struct  cudf::io::decimal_statistics
 Decimal 列的统计信息。 更多...
 
struct  cudf::io::timestamp_statistics
 时间戳列的统计信息。 更多...
 
struct  cudf::io::column_statistics
 包含每列的 ORC 统计信息。 更多...
 
struct  cudf::io::parsed_orc_statistics
 包含列名以及已解析的文件级和条带级统计信息。 更多...
 
struct  cudf::io::orc_column_schema
 ORC 列的模式,包括嵌套列。 更多...
 
struct  cudf::io::orc_schema
 ORC 文件的模式。 更多...
 
class  cudf::io::orc_metadata
 有关 ORC 文件内容的信息。 更多...
 

命名空间

 cudf
 cuDF 接口
 
 cudf::io
 IO 接口。
 
 cudf::io::orc::detail
 Orc I/O 接口。
 

类型定义

using cudf::io::no_statistics = std::monostate
 统计信息变体的 Monostate 类型别名。
 
using cudf::io::date_statistics = minmax_statistics< int32_t >
 日期(时间)列的统计信息。
 
using cudf::io::binary_statistics = sum_statistics< int64_t >
 二进制列的统计信息。 更多...
 
using cudf::io::statistics_type = std::variant< no_statistics, integer_statistics, double_statistics, string_statistics, bucket_statistics, decimal_statistics, date_statistics, binary_statistics, timestamp_statistics >
 用于 ORC 特定类型列统计信息的变体类型。 更多...
 

函数

raw_orc_statistics cudf::io::read_raw_orc_statistics (source_info const &src_info, rmm::cuda_stream_view stream=cudf::get_default_stream())
 读取 ORC 数据集的 文件级和条带级统计信息。 更多...
 
parsed_orc_statistics cudf::io::read_parsed_orc_statistics (source_info const &src_info, rmm::cuda_stream_view stream=cudf::get_default_stream())
 读取 ORC 数据集的 文件级和条带级统计信息。 更多...
 
orc_metadata cudf::io::read_orc_metadata (source_info const &src_info, rmm::cuda_stream_view stream=cudf::get_default_stream())
 读取 ORC 数据集的元数据。 更多...
 

详细描述

cuDF-IO 自由形式 API

定义于文件 orc_metadata.hpp 中。