watermonth opened a new issue, #9349: URL: https://github.com/apache/seatunnel/issues/9349
### Search before asking - [x] I had searched in the [issues](https://github.com/apache/seatunnel/issues?q=is%3Aissue+label%3A%22bug%22) and found no similar issues. ### What happened 整个同步过程加上plugin_input,plugin_out,最终sink收不到,把所有plugin_input,plugin_out去掉才可以。见配置文件,很简单的,估计你们都没测试。 ### SeaTunnel Version 2.3.10 ### SeaTunnel Config ```conf env { execution.parallelism = 1 job.mode = "STREAMING" } source { MongoDB-CDC { plugin_output = "tbl_clue_await_mongo" hosts = "192.168.160.130:27017" database = ["spider"] collection = ["spider.tbl_clue_await"] batch.size = 200 username = root password = "123456" replica_set = "rs0" auth_source = "admin" schema = { fields = { clueAwaitId = "long" agentId = "long" } } } } transform { FieldMapper { plugin_input = ["tbl_clue_await_mongo"] plugin_output = "tbl_clue_await_doris" field_mapper = { clueAwaitId = "clue_await_id" agentId = "agent_id" } } } sink { Console{ plugin_input=["tbl_clue_await_doris"] } } ``` ### Running Command ```shell ./bin/seatunnel.sh --config ./config/cs.conf -m local ``` ### Error Exception ```log 异常倒没有,只是数据不流到sink ``` ### Zeta or Flink or Spark Version zeta 2.3.10 ### Java or Scala Version _No response_ ### Screenshots java version "1.8.0_202" Java(TM) SE Runtime Environment (build 1.8.0_202-b08) Java HotSpot(TM) 64-Bit Server VM (build 25.202-b08, mixed mode) ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [x] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- 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]
