danny0405 commented on issue #9093:
URL: https://github.com/apache/hudi/issues/9093#issuecomment-1614496615
You should define the `bulk_insert` option while initializing the table with
sql:
```sql
String createTabelSql = "create table dept(\n" +
" dept_id BIGINT PRIMARY KEY NOT ENFORCED,\n" +
" dept_name varchar(10),\n" +
" ts timestamp(3)\n" +
")\n" +
"with (\n" +
" 'connector' = 'hudi',\n" +
" 'path' = 'hdfs://localhost:9000/hudi/dept',\n" +
" 'table.type' = 'MERGE_ON_READ'\n" +
")";
```
It's weird you can't query the data, is there any exception thrown out?
--
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]