Interface ScanParquetOptions

Options for scanParquet

interface ScanParquetOptions {
    cache?: boolean;
    cloudOptions?: unknown;
    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

cache?: boolean
cloudOptions?: unknown
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