This is an automated email from the ASF dual-hosted git repository.
vinoyang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push:
new 8d4a7fe [HUDI-1783] Support Huawei Cloud Object Storage (#2796)
8d4a7fe is described below
commit 8d4a7fe33e041719e2509f1f8ad3667e2ae7bbb4
Author: xiarixiaoyao <[email protected]>
AuthorDate: Sat Apr 10 13:02:11 2021 +0800
[HUDI-1783] Support Huawei Cloud Object Storage (#2796)
---
.../src/main/java/org/apache/hudi/common/fs/StorageSchemes.java | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git
a/hudi-common/src/main/java/org/apache/hudi/common/fs/StorageSchemes.java
b/hudi-common/src/main/java/org/apache/hudi/common/fs/StorageSchemes.java
index 7ebf641..56c9c8e 100644
--- a/hudi-common/src/main/java/org/apache/hudi/common/fs/StorageSchemes.java
+++ b/hudi-common/src/main/java/org/apache/hudi/common/fs/StorageSchemes.java
@@ -53,7 +53,9 @@ public enum StorageSchemes {
// Databricks file system
DBFS("dbfs", false),
// IBM Cloud Object Storage
- COS("cos", false);
+ COS("cos", false),
+ // Huawei Cloud Object Storage
+ OBS("obs", false);
private String scheme;
private boolean supportsAppend;