Skip to content

Commit 37a1f9e

Browse files
Merge pull request #390 from liuyou2/dev-1.0.0
Update the configuration file and database script file of dss1.0.0
2 parents fb49d82 + 8fecdae commit 37a1f9e

19 files changed

+1865
-1169
lines changed

conf/application-dss.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
eureka:
3+
client:
4+
serviceUrl:
5+
defaultZone: http://127.0.0.1:20303/eureka/
6+
#instance:
7+
#prefer-ip-address: true
8+
#instance-id: ${spring.cloud.client.ip-address}:${server.port}
9+
#metadata-map:
10+
#test: wedatasphere
11+
12+
management:
13+
endpoints:
14+
web:
15+
exposure:
16+
include: refresh,info
17+
logging:
18+
config: classpath:log4j2.xml
19+
20+
#mybatis:
21+
# configuration:
22+
# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
23+

conf/config.sh

Lines changed: 0 additions & 80 deletions
This file was deleted.

conf/db.sh

Lines changed: 0 additions & 8 deletions
This file was deleted.
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
#
2+
# Copyright 2019 WeBank
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
#
15+
#
16+
17+
# Spring configurations
18+
spring.server.port=9206
19+
spring.spring.application.name=dss-apiservice-server
20+
21+
wds.linkis.server.mybatis.mapperLocations=classpath*:com/webank/wedatasphere/dss/apiservice/core/dao/mapper/*.xml
22+
wds.linkis.server.mybatis.typeAliasesPackage=com.webank.wedatasphere.dss.apiservice.core.bo,com.webank.wedatasphere.dss.apiservice.core.vo
23+
wds.linkis.server.mybatis.BasePackage=com.webank.wedatasphere.dss.apiservice.core.dao
24+
25+
wds.linkis.server.restful.scan.packages=com.webank.wedatasphere.dss.apiservice.core.restful
26+
27+
#sit
28+
wds.linkis.server.version=v1
29+
wds.linkis.server.url=
30+
31+
#test
32+
wds.linkis.test.mode=false
33+
wds.linkis.test.user=
34+
35+
36+
#dsm
37+
wds.linkis.server.dsm.admin.users=
38+
39+
40+
#用于执行的datasource配置
41+
wds.linkis.datasource.hikari.maximumPoolSize=100
42+
wds.linkis.datasource.hikari.minimumIdle=10
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
#
2+
# Copyright 2019 WeBank
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
#
15+
#
16+
17+
# Spring configurations
18+
spring.server.port=9009
19+
spring.spring.application.name=dss-datapipe-server
20+
21+
wds.linkis.server.mybatis.mapperLocations=classpath*:com/webank/wedatasphere/dss/datapipe/dao/mapper/*.xml
22+
wds.linkis.server.mybatis.typeAliasesPackage=com.webank.wedatasphere.dss.datapipe.vo
23+
wds.linkis.server.mybatis.BasePackage=com.webank.wedatasphere.dss.datapipe.dao
24+
25+
wds.linkis.server.restful.scan.packages=com.webank.wedatasphere.dss.datapipe.restful
26+
27+
#sit
28+
wds.linkis.server.version=v1
29+
wds.linkis.server.url=
30+
31+
#test
32+
wds.linkis.test.mode=false
33+
wds.linkis.test.user=
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
#
2+
# Copyright 2019 WeBank
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
#
15+
#
16+
17+
# Spring configurations
18+
spring.server.port=9205
19+
20+
spring.spring.application.name=dss-flow-entrance
21+
22+
##mybatis
23+
wds.linkis.server.mybatis.mapperLocations=classpath*:com/webank/wedatasphere/dss/flow/execution/entrance/dao/impl/*.xml,classpath*:com/webank/wedatasphere/linkis/jobhistory/dao/impl/*.xml
24+
25+
wds.linkis.server.mybatis.typeAliasesPackage=
26+
27+
wds.linkis.server.mybatis.BasePackage=com.webank.wedatasphere.dss.flow.execution.entrance.dao,com.webank.wedatasphere.linkis.jobhistory.dao
28+
29+
30+
wds.linkis.server.restful.scan.packages=com.webank.wedatasphere.linkis.entrance.restful,com.webank.wedatasphere.dss.flow.execution.entrance.restful
31+
32+
#wds.linkis.server.component.exclude.classes=com.webank.wedatasphere.linkis.DataWorkCloudApplication
33+
34+
wds.linkis.engine.application.name=flowExecutionEngine
35+
wds.linkis.enginemanager.application.name=flowExecution
36+
37+
wds.linkis.query.application.name=linkis-ps-publicservice
38+
39+
wds.linkis.console.config.application.name=linkis-ps-publicservice
40+
wds.linkis.engine.creation.wait.time.max=20m
41+
wds.linkis.server.version=v1
42+
43+
wds.linkis.server.socket.mode=true
44+
45+
wds.linkis.client.flow.adminuser=ws
46+
wds.linkis.client.flow.author.user.token=172.0.0.1
47+
48+
wds.linkis.server.component.exclude.classes=com.webank.wedatasphere.linkis.entranceclient.conf.ClientForEntranceSpringConfiguration,com.webank.wedatasphere.linkis.entranceclient.conf.ClientSpringConfiguration
49+
50+
wds.linkis.server.component.exclude.packages=com.webank.wedatasphere.linkis.entrance.restful.
51+
spring.spring.main.allow-bean-definition-overriding=true
52+
53+
wds.linkis.entrance.config.log.path=file:///appcom/tmp/dss/
54+
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
#
2+
# Copyright 2019 WeBank
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
#
15+
#
16+
17+
# Spring configurations
18+
spring.server.port=9203
19+
spring.spring.application.name=dss-framework-orchestrator-server
20+
21+
wds.linkis.test.mode=true
22+
23+
wds.linkis.test.user=neiljianliu
24+
25+
wds.linkis.log.clear=true
26+
27+
wds.linkis.server.version=v1
28+
29+
##restful
30+
wds.linkis.server.restful.scan.packages=com.webank.wedatasphere.dss.orchestrator.server.restful
31+
32+
##mybatis
33+
wds.linkis.server.mybatis.mapperLocations=classpath*:com/webank/wedatasphere/dss/framework/appconn/dao/impl/*.xml,classpath*:com/webank/wedatasphere/dss/orchestrator/core/dao/impl/*.xml,classpath*:com/webank/wedatasphere/dss/server/dao/impl/*.xml,classpath*:com/webank/wedatasphere/dss/application/dao/impl/*.xml,classpath*:com/webank/wedatasphere/dss/workspace/mapper/impl/*.xml,classpath*:com/webank/wedatasphere/dss/workspace/common/dao/impl/*.xml,classpath*:com/webank/wedatasphere/dss/orchestrator/db/dao/impl/*.xml
34+
35+
wds.linkis.server.mybatis.typeAliasesPackage=com.webank.wedatasphere.dss.server.entity,com.webank.wedatasphere.dss.application.entity,com.webank.wedatasphere.dss.framework.appconn.entity
36+
37+
wds.linkis.server.mybatis.BasePackage=com.webank.wedatasphere.dss.framework.appconn.dao,com.webank.wedatasphere.dss.orchestrator.core.dao,com.webank.wedatasphere.dss.server.dao,com.webank.wedatasphere.dss.application.dao,com.webank.wedatasphere.dss.workspace.mapper,com.webank.wedatasphere.dss.workspace.common.dao,com.webank.wedatasphere.dss.workspace.common.dao,com.webank.wedatasphere.dss.orchestrator.db.dao
38+
39+
wds.dss.appconn.scheduler.project.store.dir=file:///appcom/tmp/wds/scheduler
40+
wds.dss.appconn.scheduler.azkaban.login.passwd=userpwd
41+
##export file dir
42+
wds.dss.server.export.url=/appcom/tmp/dss
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#
2+
# Copyright 2019 WeBank
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
#
15+
#
16+
17+
# Spring configurations
18+
spring.server.port=9202
19+
spring.spring.application.name=dss-framework-project-server
20+
21+
wds.linkis.log.clear=true
22+
23+
wds.linkis.server.version=v1
24+
25+
##restful
26+
wds.linkis.server.restful.scan.packages=com.webank.wedatasphere.dss.framework.workspace.restful,com.webank.wedatasphere.dss.framework.project.restful,com.webank.wedatasphere.dss.framework.release.restful,com.webank.wedatasphere.dss.framework.appconn.restful
27+
28+
##mybatis
29+
wds.linkis.server.mybatis.mapperLocations=classpath*:com/webank/wedatasphere/dss/framework/workspace/dao/impl/*.xml,classpath*:com/webank/wedatasphere/dss/application/dao/impl/*.xml,classpath*:com/webank/wedatasphere/dss/framework/project/dao/impl/*Mapper.xml,classpath*:com/webank/wedatasphere/dss/framework/appconn/dao/impl/*.xml,classpath*:com/webank/wedatasphere/dss/framework/release/dao/impl/*.xml
30+
31+
wds.linkis.server.mybatis.typeAliasesPackage=com.webank.wedatasphere.dss.application.entity,com.webank.wedatasphere.dss.common.entity,com.webank.wedatasphere.dss.framework.workspace.bean,com.webank.wedatasphere.dss.framework.project.entity,com.webank.wedatasphere.dss.framework.appconn.entity,com.webank.wedatasphere.dss.framework.release.entity
32+
33+
wds.linkis.server.mybatis.BasePackage=com.webank.wedatasphere.dss.framework.workspace.dao,com.webank.wedatasphere.dss.application.dao,com.webank.wedatasphere.dss.framework.project.dao,com.webank.wedatasphere.dss.framework.appconn.dao,com.webank.wedatasphere.dss.framework.release.dao
34+
35+
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
#
2+
# Copyright 2019 WeBank
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
#
15+
#
16+
17+
# Spring configurations
18+
spring.server.port=9207
19+
spring.spring.application.name=dss-workflow-server
20+
21+
wds.linkis.test.mode=true
22+
23+
wds.linkis.test.user=neiljianliu
24+
25+
wds.linkis.log.clear=true
26+
27+
wds.linkis.server.version=v1
28+
29+
##restful
30+
wds.linkis.server.restful.scan.packages=com.webank.wedatasphere.dss.workflow.restful
31+
32+
##mybatis
33+
wds.linkis.server.mybatis.mapperLocations=classpath*:com/webank/wedatasphere/dss/workflow/dao/impl/*.xml,classpath*:com/webank/wedatasphere/dss/framework/appconn/dao/impl/*.xml
34+
35+
wds.linkis.server.mybatis.typeAliasesPackage=com.webank.wedatasphere.dss.workflow.entity,com.webank.wedatasphere.dss.framework.appconn.entity
36+
37+
wds.linkis.server.mybatis.BasePackage=com.webank.wedatasphere.dss.workflow.dao,com.webank.wedatasphere.dss.framework.appconn.dao
38+
39+
wds.dss.appconn.scheduler.project.store.dir=file:///appcom/tmp/wds/scheduler
40+
wds.dss.appconn.scheduler.azkaban.login.passwd=
41+
##import file dir
42+
wds.dss.file.upload.dir=/appcom/tmp/uploads
43+
44+
wds.dss.server.export.env=DEV

0 commit comments

Comments
 (0)