You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
phenomenon
After configuring mysql -> mysql tasks, and clicking Execute, all tasks are in the queue state, but not in the execution state.
Observe the logs of service, executor and gateway, and no obvious error log is found.
#12
And I see that the previous issue has been solved. Can you explain in detail where to change it? Thank you.
并且我看到之前的issue已经解决了,能不能详细的说明下要改哪里,谢谢
The text was updated successfully, but these errors were encountered:
Found the init () method in ExecutorServiceImpl class.
String host = MachineInfo.getIpAddress(configuration.getNetworkInterface());
When the getIpAddress method is called, if there are multiple ip addresses in the machine, such as virtual machine ip, an ip binding bug will be generated, which will cause the executor service to be abnormal, and then it will always be queued when the front-end display.
It is recommended to have an ip configuration item directly to fix this bug.
找到了ExecutorServiceImpl类中init()方法中
String host = MachineInfo.getIpAddress(configuration.getNetworkInterface());
调用getIpAddress方法时,如果机器中多个ip地址,比如虚拟机ip,就会产生ip绑定bug,导致executor服务不正常,然后在前端显示时一直在排队中。
建议直接有个ip配置项来修复这个bug
jefftlin
changed the title
Exchangis配置好mysql->mysql 任务后,点击执行,任务一直处于排队状态
Exchange is configured mysql->mysql task, then click execute, and the task has been queued.
May 28, 2022
#!/bin/bash
ip="10.0.0.14"
interfaces=(`ip l | awk -F":" '/^[^ ]/{print $2}'| awk '{print $1}'`)
for interface in ${interfaces[*]};do
rs=`ip a show $interface| grep $ip`
if [ -n "$rs" ];then
echo $interface
break
fi
done
1.版本:
exchangis-0.5.0.RELEASE
2. 现象
配置好mysql -> mysql 任务,并点击执行后, 所有任务都处于排队状态,没有进入到执行状态。
观察service、 executor、gateway 日志,未发现明显错误日志
exchangis-0.5.0.RELEASE
After configuring mysql -> mysql tasks, and clicking Execute, all tasks are in the queue state, but not in the execution state.
Observe the logs of service, executor and gateway, and no obvious error log is found.
#12
And I see that the previous issue has been solved. Can you explain in detail where to change it? Thank you.
并且我看到之前的issue已经解决了,能不能详细的说明下要改哪里,谢谢
The text was updated successfully, but these errors were encountered: