Browse Source

add out put log when master/worker server start (#1769)

* merge hadoop.properties into common.properties

* merge hadoop,zookeeper.properties into common.properties
remove combined.properties/master.properties/worker.properties

* change db user/pwd to test/test

* rename .dolphinscheduler_en.sh to dolphinscheduler_env.sh
remove some unused in install.sh

* add out put log when master/worker server start...

* add start log when servers start
pull/2/head
bao liang 5 years ago committed by qiaozhanwei
parent
commit
e0e0696b4f
  1. 2
      dockerfile/conf/dolphinscheduler/conf/common/common.properties
  2. 2
      dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/Constants.java
  3. 7
      dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/zk/AbstractZKClient.java
  4. 2
      dolphinscheduler-common/src/main/resources/common.properties
  5. 39
      dolphinscheduler-dao/src/main/resources/application.properties
  6. 4
      dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/MasterServer.java
  7. 14
      dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/config/MasterConfig.java
  8. 2
      dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/log/MasterLogFilter.java
  9. 2
      dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/runner/MasterSchedulerThread.java
  10. 2
      dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/monitor/RunConfig.java
  11. 5
      dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/worker/WorkerServer.java
  12. 10
      dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/worker/config/WorkerConfig.java
  13. 1
      dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/worker/runner/FetchTaskThread.java
  14. 3
      dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/zk/ZKMasterClient.java
  15. 1
      dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/zk/ZKWorkerClient.java
  16. 4
      dolphinscheduler-server/src/main/resources/config/install_config.conf
  17. 22
      dolphinscheduler-server/src/main/resources/config/run_config.conf
  18. 2
      dolphinscheduler-server/src/test/java/org/apache/dolphinscheduler/server/worker/EnvFileTest.java
  19. 50
      install.sh
  20. 0
      script/env/dolphinscheduler_env.sh
  21. 1
      script/scp-hosts.sh
  22. 1
      script/start-all.sh
  23. 1
      script/stop-all.sh

2
dockerfile/conf/dolphinscheduler/conf/common/common.properties

@ -49,7 +49,7 @@ login.user.keytab.username=hdfs-mycluster@ESZ.COM
login.user.keytab.path=/opt/hdfs.headless.keytab login.user.keytab.path=/opt/hdfs.headless.keytab
# system env path. self configuration, please make sure the directory and file exists and have read write execute permissions # system env path. self configuration, please make sure the directory and file exists and have read write execute permissions
dolphinscheduler.env.path=/opt/dolphinscheduler/conf/env/.dolphinscheduler_env.sh dolphinscheduler.env.path=/opt/dolphinscheduler/conf/env/dolphinscheduler_env.sh
#resource.view.suffixs #resource.view.suffixs
resource.view.suffixs=txt,log,sh,conf,cfg,py,java,sql,hql,xml resource.view.suffixs=txt,log,sh,conf,cfg,py,java,sql,hql,xml

2
dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/Constants.java

@ -471,6 +471,8 @@ public final class Constants {
public static final String PASSWORD = "password"; public static final String PASSWORD = "password";
public static final String XXXXXX = "******"; public static final String XXXXXX = "******";
public static final String NULL = "NULL"; public static final String NULL = "NULL";
public static final String THREAD_NAME_MASTER_SERVER = "Master-Server";
public static final String THREAD_NAME_WORKER_SERVER = "Worker-Server";
public static String TASK_RECORD_TABLE_HIVE_LOG = "eamp_hive_log_hd"; public static String TASK_RECORD_TABLE_HIVE_LOG = "eamp_hive_log_hd";

7
dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/zk/AbstractZKClient.java

@ -108,9 +108,9 @@ public abstract class AbstractZKClient extends ZookeeperCachedOperator{
List<String> deadServers = super.getChildrenKeys(getDeadZNodeParentPath()); List<String> deadServers = super.getChildrenKeys(getDeadZNodeParentPath());
for(String serverPath : deadServers){ for(String serverPath : deadServers){
if(serverPath.startsWith(serverType+UNDERLINE+host)){ if(serverPath.startsWith(serverType+UNDERLINE+host)){
String server = getDeadZNodeParentPath() + SINGLE_SLASH + serverPath; String server = getDeadZNodeParentPath() + SINGLE_SLASH + serverPath;
super.remove(server); super.remove(server);
logger.info("{} server {} deleted from zk dead server path success" , serverType , host); logger.info("{} server {} deleted from zk dead server path success" , serverType , host);
} }
} }
} }
@ -412,6 +412,7 @@ public abstract class AbstractZKClient extends ZookeeperCachedOperator{
persist(getWorkerZNodeParentPath(), ""); persist(getWorkerZNodeParentPath(), "");
persist(getDeadZNodeParentPath(), ""); persist(getDeadZNodeParentPath(), "");
logger.info("initialize server nodes success.");
} catch (Exception e) { } catch (Exception e) {
logger.error("init system znode failed",e); logger.error("init system znode failed",e);
} }

2
dolphinscheduler-common/src/main/resources/common.properties

@ -63,7 +63,7 @@ login.user.keytab.username=hdfs-mycluster@ESZ.COM
login.user.keytab.path=/opt/hdfs.headless.keytab login.user.keytab.path=/opt/hdfs.headless.keytab
# system env path. self configuration, please make sure the directory and file exists and have read write execute permissions # system env path. self configuration, please make sure the directory and file exists and have read write execute permissions
dolphinscheduler.env.path=/opt/.dolphinscheduler_env.sh dolphinscheduler.env.path=/opt/dolphinscheduler_env.sh
#resource.view.suffixs #resource.view.suffixs
resource.view.suffixs=txt,log,sh,conf,cfg,py,java,sql,hql,xml,properties resource.view.suffixs=txt,log,sh,conf,cfg,py,java,sql,hql,xml,properties

39
dolphinscheduler-dao/src/main/resources/application.properties

@ -95,6 +95,45 @@ mybatis-plus.configuration.cache-enabled=false
mybatis-plus.configuration.call-setters-on-nulls=true mybatis-plus.configuration.call-setters-on-nulls=true
mybatis-plus.configuration.jdbc-type-for-null=null mybatis-plus.configuration.jdbc-type-for-null=null
# master settings
# master execute thread num
master.exec.threads=100
# master execute task number in parallel
master.exec.task.num=20
# master heartbeat interval
master.heartbeat.interval=10
# master commit task retry times
master.task.commit.retryTimes=5
# master commit task interval
master.task.commit.interval=1000
# only less than cpu avg load, master server can work. default value : the number of cpu cores * 2
master.max.cpuload.avg=100
# only larger than reserved memory, master server can work. default value : physical memory * 1/10, unit is G.
master.reserved.memory=0.1
# worker settings
# worker execute thread num
worker.exec.threads=100
# worker heartbeat interval
worker.heartbeat.interval=10
# submit the number of tasks at a time
worker.fetch.task.num = 3
# only less than cpu avg load, worker server can work. default value : the number of cpu cores * 2
worker.max.cpuload.avg=100
# only larger than reserved memory, worker server can work. default value : physical memory * 1/6, unit is G.
worker.reserved.memory=0.1
# data quality analysis is not currently in use. please ignore the following configuration # data quality analysis is not currently in use. please ignore the following configuration
# task record # task record
task.record.flag=false task.record.flag=false

4
dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/MasterServer.java

@ -97,7 +97,9 @@ public class MasterServer implements IStoppable {
* @param args arguments * @param args arguments
*/ */
public static void main(String[] args) { public static void main(String[] args) {
Thread.currentThread().setName(Constants.THREAD_NAME_MASTER_SERVER);
new SpringApplicationBuilder(MasterServer.class).web(WebApplicationType.NONE).run(args); new SpringApplicationBuilder(MasterServer.class).web(WebApplicationType.NONE).run(args);
} }
/** /**
@ -133,6 +135,7 @@ public class MasterServer implements IStoppable {
// start QuartzExecutors // start QuartzExecutors
// what system should do if exception // what system should do if exception
try { try {
logger.info("start Quartz server...");
ProcessScheduleJob.init(processDao); ProcessScheduleJob.init(processDao);
QuartzExecutors.getInstance().start(); QuartzExecutors.getInstance().start();
} catch (Exception e) { } catch (Exception e) {
@ -239,6 +242,7 @@ public class MasterServer implements IStoppable {
* @return * @return
*/ */
private Runnable heartBeatThread(){ private Runnable heartBeatThread(){
logger.info("start master heart beat thread...");
Runnable heartBeatThread = new Runnable() { Runnable heartBeatThread = new Runnable() {
@Override @Override
public void run() { public void run() {

14
dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/config/MasterConfig.java

@ -22,25 +22,25 @@ import org.springframework.stereotype.Component;
@Component @Component
public class MasterConfig { public class MasterConfig {
@Value("${master.exec.threads:100}") @Value("${master.exec.threads}")
private int masterExecThreads; private int masterExecThreads;
@Value("${master.exec.task.num:20}") @Value("${master.exec.task.num}")
private int masterExecTaskNum; private int masterExecTaskNum;
@Value("${master.heartbeat.interval:10}") @Value("${master.heartbeat.interval}")
private int masterHeartbeatInterval; private int masterHeartbeatInterval;
@Value("${master.task.commit.retryTimes:5}") @Value("${master.task.commit.retryTimes}")
private int masterTaskCommitRetryTimes; private int masterTaskCommitRetryTimes;
@Value("${master.task.commit.interval:100}") @Value("${master.task.commit.interval}")
private int masterTaskCommitInterval; private int masterTaskCommitInterval;
@Value("${master.max.cpuload.avg:100}") @Value("${master.max.cpuload.avg}")
private double masterMaxCpuloadAvg; private double masterMaxCpuloadAvg;
@Value("${master.reserved.memory:0.1}") @Value("${master.reserved.memory}")
private double masterReservedMemory; private double masterReservedMemory;
public int getMasterExecThreads() { public int getMasterExecThreads() {

2
dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/log/MasterLogFilter.java

@ -37,7 +37,7 @@ public class MasterLogFilter extends Filter<ILoggingEvent> {
*/ */
@Override @Override
public FilterReply decide(ILoggingEvent event) { public FilterReply decide(ILoggingEvent event) {
if (event.getThreadName().startsWith("Master-")){ if (event.getThreadName().startsWith("Master-") ){
return FilterReply.ACCEPT; return FilterReply.ACCEPT;
} }
return FilterReply.DENY; return FilterReply.DENY;

2
dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/runner/MasterSchedulerThread.java

@ -90,6 +90,7 @@ public class MasterSchedulerThread implements Runnable {
*/ */
@Override @Override
public void run() { public void run() {
logger.info("master scheduler start successfully...");
while (Stopper.isRunning()){ while (Stopper.isRunning()){
// process instance // process instance
@ -139,6 +140,7 @@ public class MasterSchedulerThread implements Runnable {
AbstractZKClient.releaseMutex(mutex); AbstractZKClient.releaseMutex(mutex);
} }
} }
logger.info("master server stopped...");
} }

2
dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/monitor/RunConfig.java

@ -24,7 +24,7 @@ import org.springframework.stereotype.Component;
* zookeeper conf * zookeeper conf
*/ */
@Component @Component
@PropertySource("classpath:config/run_config.conf") @PropertySource("classpath:config/install_config.conf")
public class RunConfig { public class RunConfig {
//zk connect config //zk connect config

5
dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/worker/WorkerServer.java

@ -129,6 +129,7 @@ public class WorkerServer implements IStoppable {
* @param args arguments * @param args arguments
*/ */
public static void main(String[] args) { public static void main(String[] args) {
Thread.currentThread().setName(Constants.THREAD_NAME_WORKER_SERVER);
new SpringApplicationBuilder(WorkerServer.class).web(WebApplicationType.NONE).run(args); new SpringApplicationBuilder(WorkerServer.class).web(WebApplicationType.NONE).run(args);
} }
@ -138,6 +139,8 @@ public class WorkerServer implements IStoppable {
*/ */
@PostConstruct @PostConstruct
public void run(){ public void run(){
logger.info("start worker server...");
zkWorkerClient.init(); zkWorkerClient.init();
this.taskQueue = TaskQueueFactory.getTaskQueueInstance(); this.taskQueue = TaskQueueFactory.getTaskQueueInstance();
@ -264,6 +267,7 @@ public class WorkerServer implements IStoppable {
* @return * @return
*/ */
private Runnable heartBeatThread(){ private Runnable heartBeatThread(){
logger.info("start worker heart beat thread...");
Runnable heartBeatThread = new Runnable() { Runnable heartBeatThread = new Runnable() {
@Override @Override
public void run() { public void run() {
@ -288,6 +292,7 @@ public class WorkerServer implements IStoppable {
Runnable killProcessThread = new Runnable() { Runnable killProcessThread = new Runnable() {
@Override @Override
public void run() { public void run() {
logger.info("start listening kill process thread...");
while (Stopper.isRunning()){ while (Stopper.isRunning()){
Set<String> taskInfoSet = taskQueue.smembers(Constants.DOLPHINSCHEDULER_TASKS_KILL); Set<String> taskInfoSet = taskQueue.smembers(Constants.DOLPHINSCHEDULER_TASKS_KILL);
if (CollectionUtils.isNotEmpty(taskInfoSet)){ if (CollectionUtils.isNotEmpty(taskInfoSet)){

10
dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/worker/config/WorkerConfig.java

@ -22,19 +22,19 @@ import org.springframework.stereotype.Component;
@Component @Component
public class WorkerConfig { public class WorkerConfig {
@Value("${worker.exec.threads:100}") @Value("${worker.exec.threads}")
private int workerExecThreads; private int workerExecThreads;
@Value("${worker.heartbeat.interval:10}") @Value("${worker.heartbeat.interval}")
private int workerHeartbeatInterval; private int workerHeartbeatInterval;
@Value("${worker.fetch.task.num:3}") @Value("${worker.fetch.task.num}")
private int workerFetchTaskNum; private int workerFetchTaskNum;
@Value("${worker.max.cpuload.avg:10}") @Value("${worker.max.cpuload.avg}")
private int workerMaxCpuloadAvg; private int workerMaxCpuloadAvg;
@Value("${master.reserved.memory:1}") @Value("${master.reserved.memory}")
private double workerReservedMemory; private double workerReservedMemory;
public int getWorkerExecThreads() { public int getWorkerExecThreads() {

1
dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/worker/runner/FetchTaskThread.java

@ -136,6 +136,7 @@ public class FetchTaskThread implements Runnable{
@Override @Override
public void run() { public void run() {
logger.info("worker start fetch tasks...");
while (Stopper.isRunning()){ while (Stopper.isRunning()){
InterProcessMutex mutex = null; InterProcessMutex mutex = null;
try { try {

3
dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/zk/ZKMasterClient.java

@ -84,6 +84,9 @@ public class ZKMasterClient extends AbstractZKClient {
* init * init
*/ */
public void init(){ public void init(){
logger.info("initialize master client...");
// init dao // init dao
this.initDao(); this.initDao();

1
dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/zk/ZKWorkerClient.java

@ -51,6 +51,7 @@ public class ZKWorkerClient extends AbstractZKClient {
*/ */
public void init(){ public void init(){
logger.info("initialize worker client...");
// init system znode // init system znode
this.initSystemZNode(); this.initSystemZNode();

4
dolphinscheduler-server/src/main/resources/config/install_config.conf

@ -19,3 +19,7 @@ installPath=/data1_1T/dolphinscheduler
deployUser=dolphinscheduler deployUser=dolphinscheduler
ips=ark0,ark1,ark2,ark3,ark4 ips=ark0,ark1,ark2,ark3,ark4
sshPort=22 sshPort=22
masters=ark0,ark1
workers=ark2,ark3,ark4
alertServer=ark3
apiServers=ark1

22
dolphinscheduler-server/src/main/resources/config/run_config.conf

@ -1,22 +0,0 @@
#
# 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.
#
masters=ark0,ark1
workers=ark2,ark3,ark4
alertServer=ark3
apiServers=ark1
sshPort=22

2
dolphinscheduler-server/src/test/java/org/apache/dolphinscheduler/server/worker/EnvFileTest.java

@ -33,7 +33,7 @@ public class EnvFileTest {
@Test @Test
public void test() { public void test() {
String path = System.getProperty("user.dir")+"/script/env/.dolphinscheduler_env.sh"; String path = System.getProperty("user.dir")+"/script/env/dolphinscheduler_env.sh";
String pythonHome = getPythonHome(path); String pythonHome = getPythonHome(path);
logger.info(pythonHome); logger.info(pythonHome);
} }

50
install.sh

@ -47,7 +47,6 @@ else
exit 1 exit 1
fi fi
source ${workDir}/conf/config/run_config.conf
source ${workDir}/conf/config/install_config.conf source ${workDir}/conf/config/install_config.conf
# for example postgresql or mysql ... # for example postgresql or mysql ...
@ -86,7 +85,6 @@ ips="ark0,ark1,ark2,ark3,ark4"
# Note: if ssh port is not default, modify here # Note: if ssh port is not default, modify here
sshPort=22 sshPort=22
# conf/config/run_config.conf config
# run master machine # run master machine
# Note: list of hosts hostname for deploying master # Note: list of hosts hostname for deploying master
masters="ark0,ark1" masters="ark0,ark1"
@ -147,9 +145,6 @@ enterpriseWechatAgentId="xxxxxxxxxx"
# Enterprise WeChat user configuration, multiple users to , split # Enterprise WeChat user configuration, multiple users to , split
enterpriseWechatUsers="xxxxx,xxxxx" enterpriseWechatUsers="xxxxx,xxxxx"
# alert port
alertPort=7789
# whether to start monitoring self-starting scripts # whether to start monitoring self-starting scripts
monitorServerState="false" monitorServerState="false"
@ -192,7 +187,7 @@ downloadPath="/tmp/dolphinscheduler/download"
execPath="/tmp/dolphinscheduler/exec" execPath="/tmp/dolphinscheduler/exec"
# SHELL environmental variable path # SHELL environmental variable path
shellEnvPath="$installPath/conf/env/.dolphinscheduler_env.sh" shellEnvPath="$installPath/conf/env/dolphinscheduler_env.sh"
# suffix of the resource file # suffix of the resource file
resSuffixs="txt,log,sh,conf,cfg,py,java,sql,hql,xml" resSuffixs="txt,log,sh,conf,cfg,py,java,sql,hql,xml"
@ -225,7 +220,7 @@ zkSessionTimeout="300"
zkConnectionTimeout="300" zkConnectionTimeout="300"
# zk retry interval # zk retry interval
zkRetrySleep="100" zkRetryMaxSleep="100"
# zk retry maximum number of times # zk retry maximum number of times
zkRetryMaxtime="5" zkRetryMaxtime="5"
@ -245,19 +240,15 @@ masterHeartbeatInterval="10"
masterTaskCommitRetryTimes="5" masterTaskCommitRetryTimes="5"
# master task submission retry interval # master task submission retry interval
masterTaskCommitInterval="100" masterTaskCommitInterval="1000"
# master maximum cpu average load, used to determine whether the master has execution capability # master maximum cpu average load, used to determine whether the master has execution capability
masterMaxCpuLoadAvg="10" masterMaxCpuLoadAvg="100"
# master reserve memory to determine if the master has execution capability # master reserve memory to determine if the master has execution capability
masterReservedMemory="1" masterReservedMemory="0.1"
# master port
masterPort=5566
# worker config
# worker config
# worker execution thread # worker execution thread
workerExecThreads="100" workerExecThreads="100"
@ -268,11 +259,7 @@ workerHeartbeatInterval="10"
workerFetchTaskNum="3" workerFetchTaskNum="3"
# worker reserve memory to determine if the master has execution capability # worker reserve memory to determine if the master has execution capability
workerReservedMemory="1" workerReservedMemory="0.1"
# master port
workerPort=7788
# api config # api config
# api server port # api server port
@ -322,7 +309,17 @@ if [ $dbtype == "postgresql" ];then
sed -i ${txt} "s#org.quartz.jobStore.driverDelegateClass.*#org.quartz.jobStore.driverDelegateClass=org.quartz.impl.jdbcjobstore.PostgreSQLDelegate#g" conf/quartz.properties sed -i ${txt} "s#org.quartz.jobStore.driverDelegateClass.*#org.quartz.jobStore.driverDelegateClass=org.quartz.impl.jdbcjobstore.PostgreSQLDelegate#g" conf/quartz.properties
fi fi
sed -i ${txt} "s#master.exec.threads.*#master.exec.threads=${masterExecThreads}#g" conf/application.properties
sed -i ${txt} "s#master.exec.task.num.*#master.exec.task.num=${masterExecTaskNum}#g" conf/application.properties
sed -i ${txt} "s#master.heartbeat.interval.*#master.heartbeat.interval=${masterHeartbeatInterval}#g" conf/application.properties
sed -i ${txt} "s#master.task.commit.retryTimes.*#master.task.commit.retryTimes=${masterTaskCommitRetryTimes}#g" conf/application.properties
sed -i ${txt} "s#master.task.commit.interval.*#master.task.commit.interval=${masterTaskCommitInterval}#g" conf/application.properties
sed -i ${txt} "s#master.reserved.memory.*#master.reserved.memory=${masterReservedMemory}#g" conf/application.properties
sed -i ${txt} "s#worker.exec.threads.*#worker.exec.threads=${workerExecThreads}#g" conf/application.properties
sed -i ${txt} "s#worker.heartbeat.interval.*#worker.heartbeat.interval=${workerHeartbeatInterval}#g" conf/application.properties
sed -i ${txt} "s#worker.fetch.task.num.*#worker.fetch.task.num=${workerFetchTaskNum}#g" conf/application.properties
sed -i ${txt} "s#worker.reserved.memory.*#worker.reserved.memory=${workerReservedMemory}#g" conf/application.properties
sed -i ${txt} "s#fs.defaultFS.*#fs.defaultFS=${defaultFS}#g" conf/common.properties sed -i ${txt} "s#fs.defaultFS.*#fs.defaultFS=${defaultFS}#g" conf/common.properties
sed -i ${txt} "s#fs.s3a.endpoint.*#fs.s3a.endpoint=${s3Endpoint}#g" conf/common.properties sed -i ${txt} "s#fs.s3a.endpoint.*#fs.s3a.endpoint=${s3Endpoint}#g" conf/common.properties
@ -331,7 +328,6 @@ sed -i ${txt} "s#fs.s3a.secret.key.*#fs.s3a.secret.key=${s3SecretKey}#g" conf/co
sed -i ${txt} "s#yarn.resourcemanager.ha.rm.ids.*#yarn.resourcemanager.ha.rm.ids=${yarnHaIps}#g" conf/common.properties sed -i ${txt} "s#yarn.resourcemanager.ha.rm.ids.*#yarn.resourcemanager.ha.rm.ids=${yarnHaIps}#g" conf/common.properties
sed -i ${txt} "s#yarn.application.status.address.*#yarn.application.status.address=http://${singleYarnIp}:8088/ws/v1/cluster/apps/%s#g" conf/common.properties sed -i ${txt} "s#yarn.application.status.address.*#yarn.application.status.address=http://${singleYarnIp}:8088/ws/v1/cluster/apps/%s#g" conf/common.properties
sed -i ${txt} "s#data.basedir.path.*#data.basedir.path=${programPath}#g" conf/common.properties sed -i ${txt} "s#data.basedir.path.*#data.basedir.path=${programPath}#g" conf/common.properties
sed -i ${txt} "s#data.download.basedir.path.*#data.download.basedir.path=${downloadPath}#g" conf/common.properties sed -i ${txt} "s#data.download.basedir.path.*#data.download.basedir.path=${downloadPath}#g" conf/common.properties
sed -i ${txt} "s#process.exec.basepath.*#process.exec.basepath=${execPath}#g" conf/common.properties sed -i ${txt} "s#process.exec.basepath.*#process.exec.basepath=${execPath}#g" conf/common.properties
@ -350,7 +346,7 @@ sed -i ${txt} "s#zookeeper.quorum.*#zookeeper.quorum=${zkQuorum}#g" conf/common.
sed -i ${txt} "s#zookeeper.dolphinscheduler.root.*#zookeeper.dolphinscheduler.root=${zkRoot}#g" conf/common.properties sed -i ${txt} "s#zookeeper.dolphinscheduler.root.*#zookeeper.dolphinscheduler.root=${zkRoot}#g" conf/common.properties
sed -i ${txt} "s#zookeeper.session.timeout.*#zookeeper.session.timeout=${zkSessionTimeout}#g" conf/common.properties sed -i ${txt} "s#zookeeper.session.timeout.*#zookeeper.session.timeout=${zkSessionTimeout}#g" conf/common.properties
sed -i ${txt} "s#zookeeper.connection.timeout.*#zookeeper.connection.timeout=${zkConnectionTimeout}#g" conf/common.properties sed -i ${txt} "s#zookeeper.connection.timeout.*#zookeeper.connection.timeout=${zkConnectionTimeout}#g" conf/common.properties
sed -i ${txt} "s#zookeeper.retry.sleep.*#zookeeper.retry.sleep=${zkRetrySleep}#g" conf/common.properties sed -i ${txt} "s#zookeeper.retry.max.sleep.*#zookeeper.retry.max.sleep=${zkRetryMaxSleep}#g" conf/common.properties
sed -i ${txt} "s#zookeeper.retry.maxtime.*#zookeeper.retry.maxtime=${zkRetryMaxtime}#g" conf/common.properties sed -i ${txt} "s#zookeeper.retry.maxtime.*#zookeeper.retry.maxtime=${zkRetryMaxtime}#g" conf/common.properties
sed -i ${txt} "s#server.port.*#server.port=${apiServerPort}#g" conf/application-api.properties sed -i ${txt} "s#server.port.*#server.port=${apiServerPort}#g" conf/application-api.properties
@ -384,11 +380,11 @@ sed -i ${txt} "s#ips.*#ips=${ips}#g" conf/config/install_config.conf
sed -i ${txt} "s#sshPort.*#sshPort=${sshPort}#g" conf/config/install_config.conf sed -i ${txt} "s#sshPort.*#sshPort=${sshPort}#g" conf/config/install_config.conf
sed -i ${txt} "s#masters.*#masters=${masters}#g" conf/config/run_config.conf sed -i ${txt} "s#masters.*#masters=${masters}#g" conf/config/install_config.conf
sed -i ${txt} "s#workers.*#workers=${workers}#g" conf/config/run_config.conf sed -i ${txt} "s#workers.*#workers=${workers}#g" conf/config/install_config.conf
sed -i ${txt} "s#alertServer.*#alertServer=${alertServer}#g" conf/config/run_config.conf sed -i ${txt} "s#alertServer.*#alertServer=${alertServer}#g" conf/config/install_config.conf
sed -i ${txt} "s#apiServers.*#apiServers=${apiServers}#g" conf/config/run_config.conf sed -i ${txt} "s#apiServers.*#apiServers=${apiServers}#g" conf/config/install_config.conf
sed -i ${txt} "s#sshPort.*#sshPort=${sshPort}#g" conf/config/run_config.conf sed -i ${txt} "s#sshPort.*#sshPort=${sshPort}#g" conf/config/install_config.conf
# 2,create directory # 2,create directory

0
script/env/.dolphinscheduler_env.sh → script/env/dolphinscheduler_env.sh vendored

1
script/scp-hosts.sh

@ -18,7 +18,6 @@
workDir=`dirname $0` workDir=`dirname $0`
workDir=`cd ${workDir};pwd` workDir=`cd ${workDir};pwd`
source $workDir/../conf/config/run_config.conf
source $workDir/../conf/config/install_config.conf source $workDir/../conf/config/install_config.conf
hostsArr=(${ips//,/ }) hostsArr=(${ips//,/ })

1
script/start-all.sh

@ -18,7 +18,6 @@
workDir=`dirname $0` workDir=`dirname $0`
workDir=`cd ${workDir};pwd` workDir=`cd ${workDir};pwd`
source $workDir/../conf/config/run_config.conf
source $workDir/../conf/config/install_config.conf source $workDir/../conf/config/install_config.conf
mastersHost=(${masters//,/ }) mastersHost=(${masters//,/ })

1
script/stop-all.sh

@ -19,7 +19,6 @@
workDir=`dirname $0` workDir=`dirname $0`
workDir=`cd ${workDir};pwd` workDir=`cd ${workDir};pwd`
source $workDir/../conf/config/run_config.conf
source $workDir/../conf/config/install_config.conf source $workDir/../conf/config/install_config.conf
mastersHost=(${masters//,/ }) mastersHost=(${masters//,/ })

Loading…
Cancel
Save