Interface GeoParquetNativeGeometryLimitsExperimental

interface GeoParquetNativeGeometryLimits {
    maxBackingBytes?: number;
    maxCopiedBytes?: number;
    maxParts?: number;
    maxRings?: number;
    maxRows?: number;
    maxVertices?: number;
}

Properties

maxBackingBytes?: number

Hard ceiling for the produced batch's retained backing buffers.

maxCopiedBytes?: number

Hard ceiling for payload bytes copied while producing the batch.

maxParts?: number

Bounds the flattened polygon-part count when decoding multipolygon.

maxRings?: number

Forwarded to createGeoArrowBatch/decodeGeoArrowBatch; bounds total rings decoded.

maxRows?: number

Bounds geometry rows before any GeoArrow batch is allocated.

maxVertices?: number

Forwarded to createGeoArrowBatch/decodeGeoArrowBatch; bounds total vertices decoded.