forked from apache/seatunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add OSS/S3 to cluster-mode type apache#4621
- Loading branch information
1 parent
c8a5d52
commit 322e8e4
Showing
22 changed files
with
927 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
66 changes: 66 additions & 0 deletions
66
...main/java/org/apache/seatunnel/engine/imap/storage/file/config/AbstractConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/* | ||
* 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.seatunnel.engine.imap.storage.file.config; | ||
|
||
import org.apache.seatunnel.engine.imap.storage.api.exception.IMapStorageException; | ||
|
||
import org.apache.hadoop.conf.Configuration; | ||
|
||
import java.util.Map; | ||
|
||
public abstract class AbstractConfiguration { | ||
|
||
protected static final String HDFS_IMPL_KEY = "impl"; | ||
|
||
/** | ||
* check the configuration keys | ||
* | ||
* @param config configuration | ||
* @param keys keys | ||
*/ | ||
void checkConfiguration(Map<String, Object> config, String... keys) { | ||
for (String key : keys) { | ||
if (!config.containsKey(key) || null == config.get(key)) { | ||
throw new IllegalArgumentException(key + " is required"); | ||
} | ||
} | ||
} | ||
|
||
public abstract Configuration buildConfiguration(Map<String, Object> config) | ||
throws IMapStorageException; | ||
|
||
/** | ||
* set extra options for configuration | ||
* | ||
* @param hadoopConf | ||
* @param config | ||
* @param prefix | ||
*/ | ||
void setExtraConfiguration( | ||
Configuration hadoopConf, Map<String, Object> config, String prefix) { | ||
config.forEach( | ||
(k, v) -> { | ||
if (k.startsWith(prefix)) { | ||
hadoopConf.set(k, String.valueOf(v)); | ||
} | ||
}); | ||
} | ||
} |
47 changes: 47 additions & 0 deletions
47
...src/main/java/org/apache/seatunnel/engine/imap/storage/file/config/FileConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* 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.seatunnel.engine.imap.storage.file.config; | ||
|
||
public enum FileConfiguration { | ||
LOCAL("local", new LocalConfiguration()), | ||
HDFS("hdfs", new HdfsConfiguration()), | ||
S3("s3", new S3Configuration()), | ||
OSS("oss", new OssConfiguration()); | ||
|
||
/** file system type */ | ||
private final String name; | ||
|
||
/** file system configuration */ | ||
private final AbstractConfiguration configuration; | ||
|
||
FileConfiguration(String name, AbstractConfiguration configuration) { | ||
this.name = name; | ||
this.configuration = configuration; | ||
} | ||
|
||
public AbstractConfiguration getConfiguration(String name) { | ||
return configuration; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
} |
Oops, something went wrong.