Exchangis icon indicating copy to clipboard operation
Exchangis copied to clipboard

Why are task jobs displayed in the queue, but data synchronization is actually impossible?

Open sunloktom opened this issue 4 years ago • 4 comments

image

sunloktom avatar Jun 04 '21 06:06 sunloktom

Their project is full of bugs. 他们这项目全是bug啊

rilweic avatar Jul 21 '21 10:07 rilweic

你就没有真正跑起来,排队中一直在死循环,执行节点也没有,当然没有数据同步

M970203 avatar Jun 01 '22 09:06 M970203

根据指定ip获取网卡名称,脚本如下: 1、比如你需要绑定的executor的ip是10.0.0.14 2、获取网卡名称如下:

#!/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

3、将获取的网卡名字,比如第二步输出的结果是“em1” 4、将第3步骤的结果配置到/wedatasphere-exchangis-0.5.0.RELEASE/modules/exchangis-executor/conf/bootstrap.yml

network: interface: name: "em1" 5、重启exchangis-executor、以及exchangis-service服务

./bin/start.sh -m exchangis-executor ./bin/start.sh -m exchangis-service 6、大功告成,附上一张测试成功的截图(hive同步mysql,一条数据) image

ocean-zhc avatar Jun 23 '22 09:06 ocean-zhc

Thank you!!!!

---- 回复的原邮件 ---- | 发件人 | @.> | | 日期 | 2022年06月23日 17:51 | | 收件人 | @.> | | 抄送至 | @.@.> | | 主题 | Re: [WeBankFinTech/Exchangis] Why are task jobs displayed in the queue, but data synchronization is actually impossible? (#79) |

根据指定ip获取网卡名称,脚本如下: 1、比如你需要绑定的executor的ip是10.0.0.14 2、获取网卡名称如下:

#!/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

3、将获取的网卡名字,比如第二步输出的结果是“em1” 4、将第3步骤的结果配置到/wedatasphere-exchangis-0.5.0.RELEASE/modules/exchangis-executor/conf/bootstrap.yml的

network: interface: name: "em1" 5、重启exchangis-executor、以及exchangis-service服务

./bin/start.sh -m exchangis-executor ./bin/start.sh -m exchangis-service 6、大功告成,附上一张测试成功的截图(hive同步mysql,一条数据)

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.***>

M970203 avatar Jun 23 '22 10:06 M970203

This has been solved. The latest version is exchangis1.1.1. You can pay attention to it.

jefftlin avatar Sep 29 '22 06:09 jefftlin