DeltaSerialization interface
Describes how data from an input is serialized or how data is serialized when written to an output in Delta Lake format.
- Extends
Properties
| delta |
Specifies the path of the Delta Lake table that the output will be written to. |
| partition |
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 | Polymorphic discriminator, which specifies the different types this object can be |
Property Details
deltaTablePath
Specifies the path of the Delta Lake table that the output will be written to.
deltaTablePath?: string
Property Value
string
partitionColumns
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.
partitionColumns?: string[]
Property Value
string[]
type
Polymorphic discriminator, which specifies the different types this object can be
type: "Delta"
Property Value
"Delta"