1
0

[HUDI-869] Add support for alluxio (#1608)

This commit is contained in:
liujinhui
2020-05-13 21:00:34 +08:00
committed by GitHub
parent 404c7e82d9
commit 32ea4c70ff
2 changed files with 4 additions and 1 deletions

View File

@@ -45,7 +45,9 @@ public enum StorageSchemes {
// Aliyun OSS
OSS("oss", false),
// View FS for federated setups. If federating across cloud stores, then append support is false
VIEWFS("viewfs", true);
VIEWFS("viewfs", true),
//ALLUXIO
ALLUXIO("alluxio", false);
private String scheme;
private boolean supportsAppend;