forked from apache/seatunnel-web
-
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.
[Feature][API] Add Job Defile API (apache#59)
- Loading branch information
1 parent
67bb42a
commit a84b53d
Showing
84 changed files
with
4,873 additions
and
175 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
70 changes: 70 additions & 0 deletions
70
...rver/seatunnel-app/src/main/java/org/apache/seatunnel/app/bean/engine/EngineDataType.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,70 @@ | ||
/* | ||
* 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.app.bean.engine; | ||
|
||
import org.apache.seatunnel.api.table.type.ArrayType; | ||
import org.apache.seatunnel.api.table.type.BasicType; | ||
import org.apache.seatunnel.api.table.type.DecimalType; | ||
import org.apache.seatunnel.api.table.type.LocalTimeType; | ||
import org.apache.seatunnel.api.table.type.PrimitiveByteArrayType; | ||
import org.apache.seatunnel.api.table.type.SeaTunnelDataType; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Data; | ||
|
||
public class EngineDataType { | ||
|
||
public static DataType T_STRING = new DataType("string", BasicType.STRING_TYPE); | ||
public static DataType T_BOOLEAN = new DataType("boolean", BasicType.BOOLEAN_TYPE); | ||
public static DataType T_BYTE = new DataType("tinyint", BasicType.BYTE_TYPE); | ||
public static DataType T_SHORT = new DataType("smallint", BasicType.SHORT_TYPE); | ||
public static DataType T_INT = new DataType("int", BasicType.INT_TYPE); | ||
public static DataType T_LONG = new DataType("bigint", BasicType.LONG_TYPE); | ||
public static DataType T_FLOAT = new DataType("float", BasicType.FLOAT_TYPE); | ||
public static DataType T_DOUBLE = new DataType("double", BasicType.DOUBLE_TYPE); | ||
public static DataType T_VOID = new DataType("null", BasicType.VOID_TYPE); | ||
|
||
public static DataType T_DECIMAL = new DataType("decimal(38, 18)", new DecimalType(38, 18)); | ||
|
||
public static DataType T_LOCAL_DATE = new DataType("date", LocalTimeType.LOCAL_DATE_TYPE); | ||
public static DataType T_LOCAL_TIME = new DataType("time", LocalTimeType.LOCAL_TIME_TYPE); | ||
public static DataType T_LOCAL_DATE_TIME = | ||
new DataType("timestamp", LocalTimeType.LOCAL_DATE_TIME_TYPE); | ||
|
||
public static DataType T_PRIMITIVE_BYTE_ARRAY = | ||
new DataType("bytes", PrimitiveByteArrayType.INSTANCE); | ||
|
||
public static DataType T_STRING_ARRAY = | ||
new DataType("array<string>", ArrayType.STRING_ARRAY_TYPE); | ||
public static DataType T_BOOLEAN_ARRAY = | ||
new DataType("array<boolean>", ArrayType.BOOLEAN_ARRAY_TYPE); | ||
public static DataType T_BYTE_ARRAY = new DataType("array<tinyint>", ArrayType.BYTE_ARRAY_TYPE); | ||
public static DataType T_SHORT_ARRAY = | ||
new DataType("array<smallint>", ArrayType.SHORT_ARRAY_TYPE); | ||
public static DataType T_INT_ARRAY = new DataType("array<int>", ArrayType.INT_ARRAY_TYPE); | ||
public static DataType T_LONG_ARRAY = new DataType("array<bigint>", ArrayType.LONG_ARRAY_TYPE); | ||
public static DataType T_FLOAT_ARRAY = new DataType("array<float>", ArrayType.FLOAT_ARRAY_TYPE); | ||
public static DataType T_DOUBLE_ARRAY = | ||
new DataType("array<double>", ArrayType.DOUBLE_ARRAY_TYPE); | ||
|
||
@Data | ||
@AllArgsConstructor | ||
public static class DataType { | ||
String name; | ||
SeaTunnelDataType<?> RawType; | ||
} | ||
} |
52 changes: 52 additions & 0 deletions
52
...nel-server/seatunnel-app/src/main/java/org/apache/seatunnel/app/bean/env/JobEnvCache.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,52 @@ | ||
/* | ||
* 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.app.bean.env; | ||
|
||
import org.apache.seatunnel.api.configuration.util.OptionRule; | ||
import org.apache.seatunnel.api.env.EnvOptionRule; | ||
import org.apache.seatunnel.app.dynamicforms.AbstractFormOption; | ||
import org.apache.seatunnel.app.dynamicforms.FormStructure; | ||
import org.apache.seatunnel.app.thirdparty.framework.SeaTunnelOptionRuleWrapper; | ||
|
||
import org.springframework.stereotype.Component; | ||
|
||
import lombok.Data; | ||
import lombok.Getter; | ||
|
||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
|
||
@Component | ||
@Data | ||
public class JobEnvCache { | ||
|
||
@Getter private final FormStructure envFormStructure; | ||
|
||
public JobEnvCache() { | ||
OptionRule envOptionRules = EnvOptionRule.getEnvOptionRules(); | ||
envFormStructure = | ||
SeaTunnelOptionRuleWrapper.wrapper( | ||
envOptionRules.getOptionalOptions(), | ||
envOptionRules.getRequiredOptions(), | ||
"Env"); | ||
List<AbstractFormOption> collect = | ||
envFormStructure.getForms().stream() | ||
.filter(form -> !"parallelism".equalsIgnoreCase(form.getField())) | ||
.collect(Collectors.toList()); | ||
envFormStructure.setForms(collect); | ||
} | ||
} |
82 changes: 82 additions & 0 deletions
82
.../seatunnel-app/src/main/java/org/apache/seatunnel/app/controller/ConnectorController.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,82 @@ | ||
/* | ||
* 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.app.controller; | ||
|
||
import org.apache.seatunnel.app.common.Result; | ||
import org.apache.seatunnel.app.domain.request.connector.ConnectorStatus; | ||
import org.apache.seatunnel.app.domain.response.connector.ConnectorInfo; | ||
import org.apache.seatunnel.app.service.IConnectorService; | ||
import org.apache.seatunnel.common.utils.JsonUtils; | ||
|
||
import org.springframework.web.bind.annotation.GetMapping; | ||
import org.springframework.web.bind.annotation.RequestMapping; | ||
import org.springframework.web.bind.annotation.RequestParam; | ||
import org.springframework.web.bind.annotation.RestController; | ||
|
||
import io.swagger.annotations.ApiOperation; | ||
import io.swagger.annotations.ApiParam; | ||
|
||
import javax.annotation.Resource; | ||
|
||
import java.io.IOException; | ||
import java.util.List; | ||
|
||
@RequestMapping("/whaletunnel/api/v1/connector") | ||
@RestController | ||
public class ConnectorController { | ||
|
||
@Resource private IConnectorService connectorService; | ||
|
||
@GetMapping("/sources") | ||
@ApiOperation(value = "list all source connector", httpMethod = "GET") | ||
public Result<List<ConnectorInfo>> listSource( | ||
@RequestParam(defaultValue = "ALL") ConnectorStatus status) { | ||
return Result.success(connectorService.listSources(status)); | ||
} | ||
|
||
@GetMapping("/transforms") | ||
@ApiOperation(value = "list all transforms", httpMethod = "GET") | ||
public Result<List<ConnectorInfo>> listAllTransform() { | ||
return Result.success(connectorService.listTransforms()); | ||
} | ||
|
||
@GetMapping("/sinks") | ||
@ApiOperation(value = "list all sink connector", httpMethod = "GET") | ||
public Result<List<ConnectorInfo>> listSink( | ||
@RequestParam(defaultValue = "ALL") ConnectorStatus status) { | ||
return Result.success(connectorService.listSinks(status)); | ||
} | ||
|
||
@GetMapping("/sync") | ||
@ApiOperation(value = "sync all connector from disk", httpMethod = "GET") | ||
public Result<List<ConnectorInfo>> sync() throws IOException { | ||
connectorService.sync(); | ||
return Result.success(); | ||
} | ||
|
||
@GetMapping("/form") | ||
@ApiOperation(value = "get source connector form structure", httpMethod = "GET") | ||
public Result<String> getConnectorFormStructure( | ||
@ApiParam(value = "connector type", required = true) @RequestParam String connectorType, | ||
@ApiParam(value = "connector name", required = true) @RequestParam | ||
String connectorName) { | ||
return Result.success( | ||
JsonUtils.toJsonString( | ||
connectorService.getConnectorFormStructure(connectorType, connectorName))); | ||
} | ||
} |
56 changes: 56 additions & 0 deletions
56
...ver/seatunnel-app/src/main/java/org/apache/seatunnel/app/controller/EngineController.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,56 @@ | ||
/* | ||
* 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.app.controller; | ||
|
||
import org.apache.seatunnel.app.bean.engine.EngineDataType; | ||
import org.apache.seatunnel.app.common.Result; | ||
import org.apache.seatunnel.app.domain.response.engine.Engine; | ||
import org.apache.seatunnel.app.service.IEngineService; | ||
|
||
import org.springframework.web.bind.annotation.GetMapping; | ||
import org.springframework.web.bind.annotation.RequestMapping; | ||
import org.springframework.web.bind.annotation.RestController; | ||
|
||
import io.swagger.annotations.ApiOperation; | ||
|
||
import javax.annotation.Resource; | ||
|
||
import java.util.Arrays; | ||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
|
||
@RequestMapping("/seatunnel/api/v1/engine") | ||
@RestController | ||
public class EngineController { | ||
|
||
@Resource private IEngineService engineService; | ||
|
||
@GetMapping("/list") | ||
@ApiOperation(value = "list all supported engines", httpMethod = "GET") | ||
public Result<List<Engine>> listSupportEngines() { | ||
return Result.success(engineService.listSupportEngines()); | ||
} | ||
|
||
@GetMapping("/type") | ||
@ApiOperation(value = "list all supported Data Type", httpMethod = "GET") | ||
public Result<List<String>> listSupportDataTypes() { | ||
return Result.success( | ||
Arrays.stream(engineService.listSupportDataTypes()) | ||
.map(EngineDataType.DataType::getName) | ||
.collect(Collectors.toList())); | ||
} | ||
} |
42 changes: 42 additions & 0 deletions
42
...server/seatunnel-app/src/main/java/org/apache/seatunnel/app/controller/EnvController.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,42 @@ | ||
/* | ||
* 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.app.controller; | ||
|
||
import org.apache.seatunnel.app.common.Result; | ||
import org.apache.seatunnel.app.service.IJobEnvService; | ||
import org.apache.seatunnel.common.utils.JsonUtils; | ||
|
||
import org.springframework.web.bind.annotation.GetMapping; | ||
import org.springframework.web.bind.annotation.RequestMapping; | ||
import org.springframework.web.bind.annotation.RestController; | ||
|
||
import io.swagger.annotations.ApiOperation; | ||
|
||
import javax.annotation.Resource; | ||
|
||
@RequestMapping("/seatunnel/api/v1/job/env") | ||
@RestController | ||
public class EnvController { | ||
|
||
@Resource private IJobEnvService jobEnvService; | ||
|
||
@GetMapping("") | ||
@ApiOperation(value = "get job env config parameters", httpMethod = "GET") | ||
public Result<String> getJobEnvFormStructure() { | ||
return Result.success(JsonUtils.toJsonString(jobEnvService.getJobEnvFormStructure())); | ||
} | ||
} |
Oops, something went wrong.