jkl0898 opened a new issue, #8630: URL: https://github.com/apache/hudi/issues/8630
**Describe the problem you faced** Hi, we tested flink + hudi example , referenced by : [Flink-Hudi QuickStart](https://hudi.apache.org/docs/flink-quick-start-guide) After we created table t1, it successed. But when we select, it returns: [ERROR] Could not execute SQL statement. Reason: java.io.FileNotFoundException: File file:/tmp/hudi_test/.hoodie does not exist **To Reproduce** Steps to reproduce the behavior: 1. DownLoad flink tar (version 13.1) and untar it. 2. Configured HADOOP_CLASSPATH. 3. Start flink cluster, start-cluster.sh 4. Start Flink-client 5. Create table t1 ``` CREATE TABLE t1( uuid VARCHAR(20) PRIMARY KEY NOT ENFORCED, name VARCHAR(10), age INT, ts TIMESTAMP(3), `partition` VARCHAR(20) ) PARTITIONED BY (`partition`) WITH ( 'connector' = 'hudi', 'path' = 'file:///tmp/hudi_test', 'table.type' = 'MERGE_ON_READ' -- this creates a MERGE_ON_READ table, by default is COPY_ON_WRITE ); ``` 6. select * from t1; 7. Flink sql-client return errors. ``` [ERROR] Could not execute SQL statement. Reason: java.io.FileNotFoundException: File file:/tmp/hudi_test/.hoodie does not exist ``` **Expected behavior** Can Select/Insert data to hudi used by flink **Environment Description** * Hudi version : 0.13 *Flink version : 1.13 * Storage (HDFS) : 3.1.1 * Running on Docker? (yes/no) : no **Additional context** - -- 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]
