Interface SinkParquetOptions

Options for

See

LazyDataFrame.sinkParquet

interface SinkParquetOptions {
    compression?: string;
    compressionLevel?: number;
    dataPagesizeLimit?: number;
    maintainOrder?: boolean;
    noOptimization?: boolean;
    predicatePushdown?: boolean;
    projectionPushdown?: boolean;
    rowGroupSize?: number;
    simplifyExpression?: boolean;
    slicePushdown?: boolean;
    statistics?: boolean;
    typeCoercion?: boolean;
}

Properties

compression?: string
compressionLevel?: number
dataPagesizeLimit?: number
maintainOrder?: boolean
noOptimization?: boolean
predicatePushdown?: boolean
projectionPushdown?: boolean
rowGroupSize?: number
simplifyExpression?: boolean
slicePushdown?: boolean
statistics?: boolean
typeCoercion?: boolean