-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #612 from SelfImpr001/dev-1.0.0
PipelineEngine adapts to the Linkis1.0's new architecture, Implement …
- Loading branch information
Showing
17 changed files
with
940 additions
and
0 deletions.
There are no files selected for viewing
133 changes: 133 additions & 0 deletions
133
linkis-engineconn-plugins/engineconn-plugins/pipeline/pom.xml
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,133 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
~ Copyright 2019 WeBank | ||
~ | ||
~ Licensed 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. | ||
--> | ||
|
||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<parent> | ||
<artifactId>linkis</artifactId> | ||
<groupId>com.webank.wedatasphere.linkis</groupId> | ||
<version>dev-1.0.0</version> | ||
<relativePath>../../../pom.xml</relativePath> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>linkis-engineplugin-pipeline</artifactId> | ||
<properties> | ||
<pipeline.version>1</pipeline.version> | ||
</properties> | ||
|
||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>com.webank.wedatasphere.linkis</groupId> | ||
<artifactId>linkis-engineconn-plugin-core</artifactId> | ||
<version>${linkis.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.webank.wedatasphere.linkis</groupId> | ||
<artifactId>linkis-computation-engineconn</artifactId> | ||
<version>${linkis.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.webank.wedatasphere.linkis</groupId> | ||
<artifactId>linkis-storage</artifactId> | ||
<version>${linkis.version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.webank.wedatasphere.linkis</groupId> | ||
<artifactId>linkis-common</artifactId> | ||
<version>${linkis.version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.webank.wedatasphere.linkis</groupId> | ||
<artifactId>linkis-message-scheduler</artifactId> | ||
<version>${linkis.version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>net.alchim31.maven</groupId> | ||
<artifactId>scala-maven-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<version>2.3</version> | ||
<inherited>false</inherited> | ||
<executions> | ||
<execution> | ||
<id>make-assembly</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>single</goal> | ||
</goals> | ||
<configuration> | ||
<descriptors> | ||
<descriptor>src/main/assembly/distribution.xml</descriptor> | ||
</descriptors> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<skipAssembly>false</skipAssembly> | ||
<finalName>out</finalName> | ||
<appendAssemblyId>false</appendAssemblyId> | ||
<attach>false</attach> | ||
<descriptors> | ||
<descriptor>src/main/assembly/distribution.xml</descriptor> | ||
</descriptors> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
<resources> | ||
<resource> | ||
<directory>src/main/java</directory> | ||
<includes> | ||
<include>**/*.xml</include> | ||
</includes> | ||
</resource> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
<excludes> | ||
<exclude>**/*.properties</exclude> | ||
<exclude>**/application.yml</exclude> | ||
<exclude>**/bootstrap.yml</exclude> | ||
<exclude>**/log4j2.xml</exclude> | ||
</excludes> | ||
</resource> | ||
</resources> | ||
</build> | ||
</project> |
72 changes: 72 additions & 0 deletions
72
linkis-engineconn-plugins/engineconn-plugins/pipeline/src/main/assembly/distribution.xml
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,72 @@ | ||
<!-- | ||
~ Copyright 2019 WeBank | ||
~ | ||
~ Licensed 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. | ||
~ | ||
--> | ||
|
||
<assembly | ||
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/2.3" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/2.3 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> | ||
<id>linkis-enginePlugin-pipeline</id> | ||
<formats> | ||
<format>dir</format> | ||
<format>zip</format> | ||
</formats> | ||
<includeBaseDirectory>true</includeBaseDirectory> | ||
<baseDirectory>pipeline</baseDirectory> | ||
|
||
<dependencySets> | ||
<dependencySet> | ||
<!-- Enable access to all projects in the current multimodule build! <useAllReactorProjects>true</useAllReactorProjects> --> | ||
<!-- Now, select which projects to include in this module-set. --> | ||
<outputDirectory>/dist/v${pipeline.version}/lib</outputDirectory> | ||
<useProjectArtifact>true</useProjectArtifact> | ||
<useTransitiveDependencies>true</useTransitiveDependencies> | ||
<unpack>false</unpack> | ||
<useStrictFiltering>false</useStrictFiltering> | ||
<useTransitiveFiltering>true</useTransitiveFiltering> | ||
|
||
</dependencySet> | ||
</dependencySets> | ||
|
||
<fileSets> | ||
|
||
<fileSet> | ||
<directory>${basedir}/src/main/resources</directory> | ||
<includes> | ||
<include>linkis-engineconn.properties</include> | ||
<include>log4j2-engineconn.xml</include> | ||
</includes> | ||
<fileMode>0777</fileMode> | ||
<outputDirectory>/dist/v${pipeline.version}/conf</outputDirectory> | ||
<lineEnding>unix</lineEnding> | ||
</fileSet> | ||
|
||
<fileSet> | ||
<directory>${basedir}/target</directory> | ||
<includes> | ||
<include>*.jar</include> | ||
</includes> | ||
<excludes> | ||
<exclude>*doc.jar</exclude> | ||
</excludes> | ||
<fileMode>0777</fileMode> | ||
<outputDirectory>/plugin/${pipeline.version}</outputDirectory> | ||
</fileSet> | ||
|
||
</fileSets> | ||
|
||
</assembly> | ||
|
29 changes: 29 additions & 0 deletions
29
...econn-plugins/engineconn-plugins/pipeline/src/main/resources/linkis-engineconn.properties
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,29 @@ | ||
# | ||
# Copyright 2019 WeBank | ||
# | ||
# Licensed 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. | ||
# | ||
|
||
|
||
wds.linkis.engine.pipeline.output.isoverwtite=true | ||
|
||
wds.linkis.server.version=v1 | ||
|
||
wds.linkis.engineconn.debug.enable=true | ||
|
||
#wds.linkis.keytab.enable=true | ||
|
||
wds.linkis.engineconn.plugin.default.clazz=com.webank.wedatasphere.linkis.manager.engineplugin.pipeline.PipelineEngineConnPlugin | ||
|
||
wds.linkis.engineconn.max.free.time=5m | ||
|
59 changes: 59 additions & 0 deletions
59
...s-engineconn-plugins/engineconn-plugins/pipeline/src/main/resources/log4j2-engineconn.xml
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,59 @@ | ||
<!-- | ||
~ Copyright 2019 WeBank | ||
~ | ||
~ Licensed 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. | ||
--> | ||
|
||
<configuration status="error" monitorInterval="30"> | ||
<appenders> | ||
<Console name="Console" target="SYSTEM_OUT"> | ||
<ThresholdFilter level="INFO" onMatch="ACCEPT" onMismatch="DENY"/> | ||
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss.SSS} %-5level [%t] %logger{36} %L %M - %msg%xEx%n"/> | ||
</Console> | ||
<RollingFile name="RollingFile" fileName="logs/linkis.log" | ||
filePattern="logs/$${date:yyyy-MM}/linkis-log-%d{yyyy-MM-dd}-%i.log"> | ||
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss.SSS} [%-5level] [%-40t] %c{1.} (%L) [%M] - %msg%xEx%n"/> | ||
<SizeBasedTriggeringPolicy size="100MB"/> | ||
<DefaultRolloverStrategy max="20"/> | ||
</RollingFile> | ||
<Send name="Send" > | ||
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss.SSS} %-5level [%t] %logger{36} %L %M - %msg%xEx%n"/> | ||
</Send> | ||
</appenders> | ||
<loggers> | ||
<root level="INFO"> | ||
<!--<appender-ref ref="RollingFile"/>--> | ||
<appender-ref ref="Console"/> | ||
<appender-ref ref="Send"/> | ||
</root> | ||
<logger name="com.netflix.discovery" level="warn" additivity="true"> | ||
<appender-ref ref="Send"/> | ||
</logger> | ||
<logger name="org.apache.hadoop.yarn" level="warn" additivity="true"> | ||
<appender-ref ref="Send"/> | ||
</logger> | ||
<logger name="org.springframework" level="warn" additivity="true"> | ||
<appender-ref ref="Send"/> | ||
</logger> | ||
<logger name="com.webank.wedatasphere.linkis.server.security" level="warn" additivity="true"> | ||
<appender-ref ref="Send"/> | ||
</logger> | ||
<logger name="org.apache.hadoop.hive.ql.exec.mr.ExecDriver" level="fatal" additivity="true"> | ||
<appender-ref ref="Send"/> | ||
</logger> | ||
<logger name="org.apache.hadoop.hdfs.KeyProviderCache" level="fatal" additivity="true"> | ||
<appender-ref ref="Send"/> | ||
</logger> | ||
|
||
</loggers> | ||
</configuration> |
65 changes: 65 additions & 0 deletions
65
...m/webank/wedatasphere/linkis/manager/engineplugin/pipeline/PipelineEngineConnPlugin.scala
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,65 @@ | ||
/* | ||
* Copyright 2019 WeBank | ||
* | ||
* Licensed 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 com.webank.wedatasphere.linkis.manager.engineplugin.pipeline | ||
|
||
import com.webank.wedatasphere.linkis.manager.engineplugin.common.EngineConnPlugin | ||
import com.webank.wedatasphere.linkis.manager.engineplugin.common.creation.EngineConnFactory | ||
import com.webank.wedatasphere.linkis.manager.engineplugin.common.launch.EngineConnLaunchBuilder | ||
import com.webank.wedatasphere.linkis.manager.engineplugin.common.resource.{EngineResourceFactory, GenericEngineResourceFactory} | ||
import com.webank.wedatasphere.linkis.manager.engineplugin.pipeline.builder.PipelineEngineConnLaunchBuilder | ||
import com.webank.wedatasphere.linkis.manager.engineplugin.pipeline.factory.PipelineEngineConnFactory | ||
import com.webank.wedatasphere.linkis.manager.label.entity.Label | ||
|
||
import java.util | ||
|
||
class PipelineEngineConnPlugin extends EngineConnPlugin { | ||
|
||
private val EP_CONTEXT_CONSTRUCTOR_LOCK = new Object() | ||
|
||
private var engineResourceFactory: EngineResourceFactory = _ | ||
|
||
private var engineLaunchBuilder: EngineConnLaunchBuilder = _ | ||
|
||
private var engineFactory: EngineConnFactory = _ | ||
|
||
private val defaultLabels: util.List[Label[_]] = new util.ArrayList[Label[_]]() | ||
|
||
override def init(params: util.Map[String, Any]): Unit = {} | ||
|
||
override def getEngineResourceFactory: EngineResourceFactory = EP_CONTEXT_CONSTRUCTOR_LOCK.synchronized { | ||
if (null == engineResourceFactory) { | ||
engineResourceFactory = new GenericEngineResourceFactory | ||
} | ||
engineResourceFactory | ||
} | ||
|
||
override def getEngineConnLaunchBuilder: EngineConnLaunchBuilder = EP_CONTEXT_CONSTRUCTOR_LOCK.synchronized { | ||
if (null == engineLaunchBuilder) { | ||
engineLaunchBuilder = new PipelineEngineConnLaunchBuilder | ||
} | ||
engineLaunchBuilder | ||
} | ||
|
||
override def getEngineConnFactory: EngineConnFactory = EP_CONTEXT_CONSTRUCTOR_LOCK.synchronized { | ||
if (null == engineFactory) { | ||
engineFactory = new PipelineEngineConnFactory | ||
} | ||
engineFactory | ||
} | ||
|
||
override def getDefaultLabels: util.List[Label[_]] = this.defaultLabels | ||
} |
23 changes: 23 additions & 0 deletions
23
...sphere/linkis/manager/engineplugin/pipeline/builder/PipelineEngineConnLaunchBuilder.scala
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,23 @@ | ||
/* | ||
* Copyright 2019 WeBank | ||
* | ||
* Licensed 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 com.webank.wedatasphere.linkis.manager.engineplugin.pipeline.builder | ||
|
||
import com.webank.wedatasphere.linkis.manager.engineplugin.common.launch.process.JavaProcessEngineConnLaunchBuilder | ||
|
||
class PipelineEngineConnLaunchBuilder extends JavaProcessEngineConnLaunchBuilder { | ||
|
||
} |
Oops, something went wrong.