nodejs-polars
    Preparing search index...

    Interface SinkParquetOptions

    Options for

    interface SinkParquetOptions {
        cloudOptions?: Record<string, string | number | boolean>;
        compression?:
            | "uncompressed"
            | "gzip"
            | "zstd"
            | "snappy"
            | "lzo"
            | "brotli"
            | "lz4";
        compressionLevel?: number;
        dataPagesizeLimit?: number;
        maintainOrder?: boolean;
        mkdir?: boolean;
        rowGroupSize?: number;
        statistics?: boolean
        | ParquetStatisticsOptions
        | "full";
        syncOnClose?: "none" | "data" | "all";
    }
    Index
    cloudOptions?: Record<string, string | number | boolean>
    compression?:
        | "uncompressed"
        | "gzip"
        | "zstd"
        | "snappy"
        | "lzo"
        | "brotli"
        | "lz4"
    compressionLevel?: number
    dataPagesizeLimit?: number
    maintainOrder?: boolean
    mkdir?: boolean
    rowGroupSize?: number
    statistics?: boolean | ParquetStatisticsOptions | "full"
    syncOnClose?: "none" | "data" | "all"