1
0

[MINOR] Update the java doc of HoodieTableType (#1148)

This commit is contained in:
Mathieu
2019-12-29 09:57:19 +08:00
committed by vinoyang
parent f20a130e3a
commit 01c25d6aff

View File

@@ -21,14 +21,14 @@ package org.apache.hudi.common.model;
/**
* 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 {