Results 68 comments of bulolo

@Carl-Zhou-CN thanks,bad example for mongo cdc docs,wrong type use case https://seatunnel.apache.org/docs/2.3.4/connector-v2/source/MongoDB-CDC is there same type define for "mongo" and "mongo cdc"? your use case is mongo not mongocdc mongo cdc...

> Because Seatunnel constructs deserializer based on the schema of the collection, records that do not conform to the schema cannot be parsed naturally. so how to define both double...

> @bulolo As of now `dapr run` is not supported in detached mode. So any idea how to deploy in self host without detached mode?

> Provide the table‘s ddl -- ---------------------------- -- Table structure for ORDERDETAIL -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[wmwhse2].[ORDERDETAIL]') AND type IN ('U')) DROP TABLE...

> Provide the table‘s ddl 确保是多张表,字段超过128,就会报错,我是将字段慢慢缩减到128才发现的,128字段内,2个表正常同步

https://dev-files-1253767413.cos.ap-guangzhou.myqcloud.com/temp/ORDERDETAIL.sql https://dev-files-1253767413.cos.ap-guangzhou.myqcloud.com/temp/ORDERDETAIL2.sql

> https://dev-files-1253767413.cos.ap-guangzhou.myqcloud.com/temp/ORDERDETAIL.sql https://dev-files-1253767413.cos.ap-guangzhou.myqcloud.com/temp/ORDERDETAIL2.sql 这2个是我同步的表及数据内容

> @bulolo Can set result_table_name source_table_name Try it? the same ``` env { parallelism = 1 job.mode = "STREAMING" checkpoint.interval = 5000 } source { SqlServer-CDC { username = "sa"...

@Carl-Zhou-CN @NickCodeJourney @jbonofre 我发现问题了,是starrocks的问题 使用console 可以,也就是 starrocks字段数超过128无法写入。 但这里就更加奇怪了,单张表的时候,超过128是可以的,多张表超过128不行。 ``` table-names = ["SCPRD.wmwhse2.ORDERDETAIL"] --- 超过128字段可以同步starrocks table-names = ["SCPRD.wmwhse2.ORDERDETAIL", "SCPRD.wmwhse3.ORDERDETAIL"] ----超过128字段,无法同步starrocks ``` 另外我有一个疑问,muitl-table 多table的时候不支持 Transform,那么 上游的 SqlServer-CDC 当只需要5个字段到下游starrocks,该如何做到? ``` Caused by: org.apache.seatunnel.engine.common.exception.JobDefineCheckException:...