zzzzheng opened a new issue, #2028: URL: https://github.com/apache/incubator-seatunnel/issues/2028
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/incubator-seatunnel/issues?q=is%3Aissue+label%3A%22bug%22) and found no similar issues. ### What happened 测试kudu输入时,报错,找不到表,the table does not exist: table_name: "impala::t_dp.kudu_table_info",实际表在kudu中存在,请帮忙看看,感谢,有类似问题,但是还是未解决,加了“impala::”字段 ### SeaTunnel Version 1.5.7 ### SeaTunnel Config ```conf spark { spark.app.name = "kudu2" spark.executor.instances = 2 spark.executor.cores = 1 spark.executor.memory = "1g" } input { kudu{ kudu_master="cdh01:7051,cdh02:7051,cdh03:7051" kudu_table="impala::t_dp.kudu_table_info" result_table_name="current" } } filter { sql { sql = "select * from current limit 100 ", } } output { Stdout { } } ``` ### Running Command ```shell ./bin/start-seatunnel.sh --master local[4] --deploy-mode client --config ./config/kudu_to_out.conf ``` ### Error Exception ```log 2022-06-17 16:36:10 INFO SparkUI:54 - Bound SparkUI to 0.0.0.0, and started at http://hktest-admin1:4040 find and register UDFs & UDAFs found and registered UDFs count[2], UDAFs count[0] Exception in thread "main" java.lang.Exception: org.apache.kudu.client.NonRecoverableException: the table does not exist: table_name: "impala::t_dp.kudu_table_info" at io.github.interestinglab.waterdrop.Waterdrop$.main(Waterdrop.scala:62) at io.github.interestinglab.waterdrop.Waterdrop.main(Waterdrop.scala) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.spark.deploy.JavaMainApplication.start(SparkApplication.scala:52) at org.apache.spark.deploy.SparkSubmit.org$apache$spark$deploy$SparkSubmit$$runMain(SparkSubmit.scala:849) at org.apache.spark.deploy.SparkSubmit.doRunMain$1(SparkSubmit.scala:167) at org.apache.spark.deploy.SparkSubmit.submit(SparkSubmit.scala:195) at org.apache.spark.deploy.SparkSubmit.doSubmit(SparkSubmit.scala:86) at org.apache.spark.deploy.SparkSubmit$$anon$2.doSubmit(SparkSubmit.scala:924) at org.apache.spark.deploy.SparkSubmit$.main(SparkSubmit.scala:933) at org.apache.spark.deploy.SparkSubmit.main(SparkSubmit.scala) ``` ### Flink or Spark Version spark-2.4.0 ### Java or Scala Version java 1.8 ### Screenshots _No response_ ### Are you willing to submit PR? - [X] 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]
