Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.hudi.storage;
import java.util.Arrays;
/**
* All the supported storage schemes in Hoodie.
*/
public enum StorageSchemes {
// Local filesystem
FILE("file", false, true),
// Hadoop File System
HDFS("hdfs", false, true),
// Baidu Advanced File System
AFS("afs", null, null),
// Mapr File System
MAPRFS("maprfs", null, null),
// Apache Ignite FS
IGNITE("igfs", null, null),
// AWS S3
S3A("s3a", true, null),
S3("s3", true, null),
// Google Cloud Storage
GCS("gs", true, null),
// Azure WASB
WASB("wasb", null, null),
WASBS("wasbs", null, null),
// Azure ADLS
ADL("adl", null, null),
// Azure ADLS Gen2
ABFS("abfs", null, null),
ABFSS("abfss", null, null),
// Aliyun OSS
OSS("oss", null, null),
// View FS for federated setups. If federating across cloud stores, then append support is false
// View FS support atomic creation
VIEWFS("viewfs", null, true),
//ALLUXIO
ALLUXIO("alluxio", null, null),
// Tencent Cloud Object Storage
COSN("cosn", null, null),
// Tencent Cloud HDFS
CHDFS("ofs", null, null),
// Tencent Cloud CacheFileSystem
GOOSEFS("gfs", null, null),
// Databricks file system
DBFS("dbfs", null, null),
// IBM Cloud Object Storage
COS("cos", null, null),
// Huawei Cloud Object Storage
OBS("obs", null, null),
// Kingsoft Standard Storage ks3
KS3("ks3", null, null),
// Netease Object Storage nos
NOS("nos", null, null),
// JuiceFileSystem
JFS("jfs", null, null),
// Baidu Object Storage
BOS("bos", null, null),
// Oracle Cloud Infrastructure Object Storage
OCI("oci", null, null),
// Volcengine Object Storage
TOS("tos", null, null),
// Volcengine Cloud HDFS
CFS("cfs", null, null),
// Hopsworks File System
HOPSFS("hopsfs", false, true);
private String scheme;
// null for uncertain if write is transactional, please update this for each FS
private Boolean isWriteTransactional;
// null for uncertain if dfs support atomic create&delete, please update this for each FS
private Boolean supportAtomicCreation;
StorageSchemes(String scheme, Boolean isWriteTransactional, Boolean supportAtomicCreation) {
this.scheme = scheme;
this.isWriteTransactional = isWriteTransactional;
this.supportAtomicCreation = supportAtomicCreation;
}
public String getScheme() {
return scheme;
}
public boolean isWriteTransactional() {
return isWriteTransactional != null && isWriteTransactional;
}
public boolean isAtomicCreationSupported() {
return supportAtomicCreation != null && supportAtomicCreation;
}
public static boolean isSchemeSupported(String scheme) {
return Arrays.stream(values()).anyMatch(s -> s.getScheme().equals(scheme));
}
public static boolean isWriteTransactional(String scheme) {
if (!isSchemeSupported(scheme)) {
throw new IllegalArgumentException("Unsupported scheme :" + scheme);
}
return Arrays.stream(StorageSchemes.values()).anyMatch(s -> s.isWriteTransactional() && s.scheme.equals(scheme));
}
public static boolean isAtomicCreationSupported(String scheme) {
if (!isSchemeSupported(scheme)) {
throw new IllegalArgumentException("Unsupported scheme :" + scheme);
}
return Arrays.stream(StorageSchemes.values()).anyMatch(s -> s.isAtomicCreationSupported() && s.scheme.equals(scheme));
}
}