Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
/**
* Type of the Hoodie Table.
* <p>
* Currently, 1 type is supported
* Currently, 2 types are supported.
* <p>
* COPY_ON_WRITE - Performs upserts by versioning entire files, with later versions containing newer value of a record.
* <p>
* In the future, following might be added.
* <p>
* MERGE_ON_READ - Speeds up upserts, by delaying merge until enough work piles up.
* <p>
* In the future, following might be added.
* <p>
* SIMPLE_LSM - A simple 2 level LSM tree.
*/
public enum HoodieTableType {
Expand Down