You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by GitBox <gi...@apache.org> on 2022/07/02 07:36:29 UTC

[GitHub] [incubator-seatunnel] gleiyu opened a new issue, #2114: [Bug] [seatunnel-connector-flink-fake] Type is not supported: BigInteger

gleiyu opened a new issue, #2114:
URL: https://github.com/apache/incubator-seatunnel/issues/2114

   ### 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
   
   TableException throws when run seatunnel config below.
   if i remove result_table_name parameter , the job is running well 
   
   ### SeaTunnel Version
   
   2.1.2
   
   ### SeaTunnel Config
   
   ```conf
   {
     "env": {
       "job.name": "dev_sample"
     },
     "source": [
       {
         "mock_data_schema": [
           {
             "name": "col_3",
             "type": "bigint"
           }
         ],
         "mock_data_size": "3000",
         "plugin_name": "FakeSource",
         "result_table_name": "table_54"
       }
     ],
     "transform": [],
     "sink": [
       {
         "limit": "10000",
         "plugin_name": "ConsoleSink",
         "source_table_name": "table_54"
       }
     ]
   }
   ```
   
   
   ### Running Command
   
   ```shell
   LocalFlinkExample
   ```
   
   
   ### Error Exception
   
   ```log
   ERROR Seatunnel: Exception StackTrace:java.lang.RuntimeException: Execute Flink task error
   	at org.apache.seatunnel.core.flink.command.FlinkTaskExecuteCommand.execute(FlinkTaskExecuteCommand.java:84)
   	at org.apache.seatunnel.core.base.Seatunnel.run(Seatunnel.java:39)
   	at org.apache.seatunnel.example.flink.LocalFlinkExample.main(LocalFlinkExample.java:40)
   Caused by: org.apache.flink.table.api.TableException: Type is not supported: BigInteger
   	at org.apache.flink.table.calcite.FlinkTypeFactory$.org$apache$flink$table$calcite$FlinkTypeFactory$$typeInfoToSqlTypeName(FlinkTypeFactory.scala:389)
   	at org.apache.flink.table.calcite.FlinkTypeFactory.createTypeFromTypeInfo(FlinkTypeFactory.scala:67)
   	at org.apache.flink.table.calcite.FlinkTypeFactory$$anonfun$buildLogicalRowType$1.apply(FlinkTypeFactory.scala:212)
   	at org.apache.flink.table.calcite.FlinkTypeFactory$$anonfun$buildLogicalRowType$1.apply(FlinkTypeFactory.scala:202)
   	at scala.collection.IndexedSeqOptimized$class.foreach(IndexedSeqOptimized.scala:33)
   	at scala.collection.mutable.ArrayOps$ofRef.foreach(ArrayOps.scala:186)
   	at org.apache.flink.table.calcite.FlinkTypeFactory.buildLogicalRowType(FlinkTypeFactory.scala:202)
   	at org.apache.flink.table.calcite.FlinkTypeFactory.buildLogicalRowType(FlinkTypeFactory.scala:185)
   	at org.apache.flink.table.catalog.QueryOperationCatalogViewTable.lambda$createCalciteTable$3(QueryOperationCatalogViewTable.java:69)
   	at org.apache.flink.table.catalog.QueryOperationCatalogViewTable.getRowType(QueryOperationCatalogViewTable.java:114)
   	at org.apache.calcite.prepare.CalciteCatalogReader.getTable(CalciteCatalogReader.java:130)
   	at org.apache.calcite.prepare.CalciteCatalogReader.getTableForMember(CalciteCatalogReader.java:229)
   	at org.apache.calcite.prepare.CalciteCatalogReader.getTableForMember(CalciteCatalogReader.java:83)
   	at org.apache.calcite.tools.RelBuilder.scan(RelBuilder.java:1094)
   	at org.apache.calcite.tools.RelBuilder.scan(RelBuilder.java:1123)
   	at org.apache.flink.table.plan.QueryOperationConverter$SingleRelVisitor.visit(QueryOperationConverter.java:284)
   	at org.apache.flink.table.plan.QueryOperationConverter$SingleRelVisitor.visit(QueryOperationConverter.java:140)
   	at org.apache.flink.table.operations.CatalogQueryOperation.accept(CatalogQueryOperation.java:68)
   	at org.apache.flink.table.plan.QueryOperationConverter.defaultMethod(QueryOperationConverter.java:137)
   	at org.apache.flink.table.plan.QueryOperationConverter.defaultMethod(QueryOperationConverter.java:118)
   	at org.apache.flink.table.operations.utils.QueryOperationDefaultVisitor.visit(QueryOperationDefaultVisitor.java:92)
   	at org.apache.flink.table.operations.CatalogQueryOperation.accept(CatalogQueryOperation.java:68)
   	at org.apache.flink.table.calcite.FlinkRelBuilder.tableOperation(FlinkRelBuilder.scala:121)
   	at org.apache.flink.table.api.internal.BatchTableEnvImpl.translate(BatchTableEnvImpl.scala:568)
   	at org.apache.flink.table.api.internal.BatchTableEnvImpl.translate(BatchTableEnvImpl.scala:552)
   	at org.apache.flink.table.api.bridge.java.internal.BatchTableEnvironmentImpl.toDataSet(BatchTableEnvironmentImpl.scala:106)
   	at org.apache.seatunnel.flink.util.TableUtil.tableToDataSet(TableUtil.java:50)
   	at org.apache.seatunnel.flink.batch.FlinkBatchExecution.fromSourceTable(FlinkBatchExecution.java:105)
   	at org.apache.seatunnel.flink.batch.FlinkBatchExecution.start(FlinkBatchExecution.java:70)
   	at org.apache.seatunnel.core.flink.command.FlinkTaskExecuteCommand.execute(FlinkTaskExecuteCommand.java:81)
   	... 2 more
   ```
   
   
   ### Flink or Spark Version
   
   flink :1.13
   
   ### Java or Scala Version
   
   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: commits-unsubscribe@seatunnel.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] gleiyu closed issue #2114: [Bug] [seatunnel-connector-flink-fake] Type is not supported: BigInteger

Posted by GitBox <gi...@apache.org>.
gleiyu closed issue #2114: [Bug] [seatunnel-connector-flink-fake] Type is not supported: BigInteger
URL: https://github.com/apache/incubator-seatunnel/issues/2114


-- 
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: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] ruanwenjun commented on issue #2114: [Bug] [seatunnel-connector-flink-fake] Type is not supported: BigInteger

Posted by GitBox <gi...@apache.org>.
ruanwenjun commented on issue #2114:
URL: https://github.com/apache/incubator-seatunnel/issues/2114#issuecomment-1172999587

   > You need to use `BigInteger` rather than `bigint`
   
   Sorry, I check the doc again, you can use both bigint and biginteger, there is a bug with fake source.


-- 
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: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] ruanwenjun commented on issue #2114: [Bug] [seatunnel-connector-flink-fake] Type is not supported: BigInteger

Posted by GitBox <gi...@apache.org>.
ruanwenjun commented on issue #2114:
URL: https://github.com/apache/incubator-seatunnel/issues/2114#issuecomment-1172917666

   You need to use `BigInteger` rather than `bigint`


-- 
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: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org