Enum Class HudiTableType

java.lang.Object
java.lang.Enum<HudiTableType>
io.trino.plugin.hudi.model.HudiTableType
All Implemented Interfaces:
Serializable, Comparable<HudiTableType>, Constable

public enum HudiTableType extends Enum<HudiTableType>
Type of the Hoodie Table.

Currently, 2 types are supported.

  • COPY_ON_WRITE - Performs upserts by versioning entire files, with later versions containing newer value of a record.
  • MERGE_ON_READ - Speeds up upserts, by delaying merge until enough work piles up.