MDAA TS Docs
    Preparing search index...

    Definition of an Iceberg partition field.

    interface IcebergPartitionDef {
        column: string;
        numBuckets?: number;
        transform:
            | "identity"
            | "bucket"
            | "truncate"
            | "year"
            | "month"
            | "day"
            | "hour";
        width?: number;
    }
    Index

    Properties

    column: string

    Source column name from the table schema.

    numBuckets?: number

    Number of buckets (required when transform is 'bucket').

    transform:
        | "identity"
        | "bucket"
        | "truncate"
        | "year"
        | "month"
        | "day"
        | "hour"

    Partition transform to apply.

    width?: number

    Truncation width (required when transform is 'truncate').