dolphinscheduler1.3.4的common.properties的配置

[root@dbos-bigdata-test003 conf]# vim /opt/dolphinscheduler/conf/common.properties 

下面的这个配置中8088直接在配置成端口即可

yarn.application.status.address=http://yarnIp1:8088/ws/v1/cluster/apps/%s

dolphinscheduler版本差异的配置造成的故障处理_调度

dolphinscheduler1.3.8的common.properties的配置

[root@dbos-bigdata-work007 conf]# vim /opt/dolphinscheduler/conf/common.properties 

下面的这个配置成%s,因为代码中隐藏了,不然无法获取到yarn的任务状态信息

yarn.application.status.address=http://yarnIp1:%s/ws/v1/cluster/apps/%s

dolphinscheduler版本差异的配置造成的故障处理_调度_02

下面是代码

 

 

dolphinscheduler版本差异的配置造成的故障处理_调度_03

1.3.8改了配置之后任务正常,如下

dolphinscheduler版本差异的配置造成的故障处理_调度_04