bulolo commented on issue #6658:
URL: https://github.com/apache/seatunnel/issues/6658#issuecomment-2053582855
我发现问题了,是starrocks的问题 使用console 可以,也就是 starrocks字段数超过128无法写入。
另外我有一个疑问,muitl-table 多table的时候不支持 Transform,那么 上游的 SqlServer-CDC
当只需要5个字段到下游starrocks,该如何做到/
```
env {
parallelism = 1
job.mode = "STREAMING"
checkpoint.interval = 5000
}
source {
SqlServer-CDC {
username = "sa"
password = "Password!"
startup.mode="initial"
exactly_once=true
result_table_name = "temp_orderdetail"
database-names = ["SCPRD"]
table-names = ["SCPRD.wmwhse2.ORDERDETAIL", "SCPRD.wmwhse3.ORDERDETAIL"]
base-url = "jdbc:sqlserver://192.168.103.113:1433;databaseName=SCPRD"
}
}
sink {
console {
source_table_name = "temp_orderdetail"
}
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]