Hello, everyone,
I am a new user of Hudi. After reading quickstart, I started
experimenting, but I am a little confused about incremental query. Please help
me. My question: When I insert new data every time, I execute the previous
incremental query. Why is there no new insert data?
My test environment is 0.5.2
1. Create table according to quickstart, insert 10 data, table type:
COPY_ON_WRITE
2. Generate 10 new data and append to the table
3. According to quickstart, perform an incremental query and return 10 results
4. Generate 10 new results again and append to the table
5. Only execute the SQL of incremental query (do not execute spark.read.load
and createOrReplaceTempView), but still return 10 results? Should 20 results be
returned?
Thanks a lot!