Interface ScanParquetOptions

Options for scanParquet

interface ScanParquetOptions {
    allowMissingColumns?: boolean;
    cache?: boolean;
    cloudOptions?: Map<string, string>;
    glob?: boolean;
    hivePartitioning?: boolean;
    hiveSchema?: unknown;
    includeFilePaths?: string;
    lowMemory?: boolean;
    nRows?: number;
    parallel?: "auto" | "columns" | "row_groups" | "none";
    rechunk?: boolean;
    retries?: number;
    rowIndexName?: string;
    rowIndexOffset?: number;
    tryParseHiveDates?: boolean;
    useStatistics?: boolean;
}

Properties

allowMissingColumns?: boolean
cache?: boolean
cloudOptions?: Map<string, string>
glob?: boolean
hivePartitioning?: boolean
hiveSchema?: unknown
includeFilePaths?: string
lowMemory?: boolean
nRows?: number
parallel?: "auto" | "columns" | "row_groups" | "none"
rechunk?: boolean
retries?: number
rowIndexName?: string
rowIndexOffset?: number
tryParseHiveDates?: boolean
useStatistics?: boolean