incubator-doris [Bug] Binlog同步Doris任务配置字段不生效bug

yhxst69z  于 2022-04-22  发布在  Java
关注(0)|答案(4)|浏览(198)

Search before asking

  • I had searched in the issues and found no similar issues.

Version

0.15.1-rc09

What's Wrong?

配置binlog同步到doris过程中,使用如下命令:
CREATE SYNC stream.test33
(
FROM report.test2 INTO test2 (id,college_name,is_del,is_valid)
)
FROM BINLOG
(
"type" = "canal",
"canal.server.ip" = "172.1.0.8",
"canal.server.port" = "11111",
"canal.destination" = "c_test",
"canal.username" = "report",
"canal.password" = "xxxxxx"
);

正常mysql里新增、删除、更新数据都可以同步到Doris,但是mysql源表新增字段后,同步任务没有报错,数据也没进来,
FE日志报错:
WARN (thrift-server-pool-11|250) [FrontendServiceImpl.loadTxnRollback():888] failed to rollback txn 30: errCode = 2, detailMessage = transaction not found

What You Expected?

辛苦帮忙看下这个bug

How to Reproduce?

  • No response*

Anything Else?

  • No response*

Are you willing to submit PR?

  • Yes I am willing to submit a PR!

Code of Conduct

qybjjes1

qybjjes11#

我这边新增也报 failed to rollback txn *: errCode = 2, detailMessage = transaction not found,请问这个问题你解决了吗?

zazmityj

zazmityj2#

我这边指定了列 也报这个错误

disbfnqx

disbfnqx3#

Your Doris table should also add fields with the same name, doris binlog load only synchronizes data not schema changes

zhte4eai

zhte4eai4#

是的 w我是按照这样做的 但还是在报错

相关问题