-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature][S3 File] Make S3 File Connector support multiple table write (
- Loading branch information
1 parent
f108a5e
commit 8f2049b
Showing
56 changed files
with
3,566 additions
and
137 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
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
34 changes: 34 additions & 0 deletions
34
...seatunnel/connectors/seatunnel/file/s3/source/config/MultipleTableS3FileSourceConfig.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,34 @@ | ||
/* | ||
* 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.connectors.seatunnel.file.s3.source.config; | ||
|
||
import org.apache.seatunnel.api.configuration.ReadonlyConfig; | ||
import org.apache.seatunnel.connectors.seatunnel.file.config.BaseFileSourceConfig; | ||
import org.apache.seatunnel.connectors.seatunnel.file.config.BaseMultipleTableFileSourceConfig; | ||
|
||
public class MultipleTableS3FileSourceConfig extends BaseMultipleTableFileSourceConfig { | ||
|
||
public MultipleTableS3FileSourceConfig(ReadonlyConfig s3FileSourceRootConfig) { | ||
super(s3FileSourceRootConfig); | ||
} | ||
|
||
@Override | ||
public BaseFileSourceConfig getBaseSourceConfig(ReadonlyConfig readonlyConfig) { | ||
return new S3FileSourceConfig(readonlyConfig); | ||
} | ||
} |
46 changes: 46 additions & 0 deletions
46
...a/org/apache/seatunnel/connectors/seatunnel/file/s3/source/config/S3FileSourceConfig.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,46 @@ | ||
/* | ||
* 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.connectors.seatunnel.file.s3.source.config; | ||
|
||
import org.apache.seatunnel.api.configuration.ReadonlyConfig; | ||
import org.apache.seatunnel.connectors.seatunnel.file.config.BaseFileSourceConfig; | ||
import org.apache.seatunnel.connectors.seatunnel.file.config.FileSystemType; | ||
import org.apache.seatunnel.connectors.seatunnel.file.config.HadoopConf; | ||
import org.apache.seatunnel.connectors.seatunnel.file.s3.config.S3HadoopConf; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public class S3FileSourceConfig extends BaseFileSourceConfig { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
@Override | ||
public HadoopConf getHadoopConfig() { | ||
return S3HadoopConf.buildWithReadOnlyConfig(getBaseFileSourceConfig()); | ||
} | ||
|
||
@Override | ||
public String getPluginName() { | ||
return FileSystemType.S3.getFileSystemPluginName(); | ||
} | ||
|
||
public S3FileSourceConfig(ReadonlyConfig readonlyConfig) { | ||
super(readonlyConfig); | ||
} | ||
} |
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
Oops, something went wrong.