Package version:

Describes how data from an input is serialized or how data is serialized when written to an output in Delta Lake format.

interface DeltaSerialization {
    deltaTablePath?: string;
    partitionColumns?: string[];
    type: "Delta";
}

Hierarchy (view full)

Properties

deltaTablePath?: string

Specifies the path of the Delta Lake table that the output will be written to.

partitionColumns?: string[]

Specifies the names of the columns for which the Delta Lake table will be partitioned. We are only supporting 1 partition column, but keeping it as an array for extensibility.

type: "Delta"

Polymorphic discriminator, which specifies the different types this object can be

Generated using TypeDoc