xushiyan commented on issue #6067: URL: https://github.com/apache/hudi/issues/6067#issuecomment-1186703529
@fengjian428 incremental query is to give you changes between BEGIN_INSTANTTIME_OPT_KEY and now. In your example, you set the BEGIN_INSTANTTIME_OPT_KEY to 0, it means give all records' latest versions btw time 0 and now. In real-world scenario, you do incremental query for t1, it returns rec1 at version v1; at t2 when you query, if rec1 changes from v1 -> v2 -> v3, it'll give you all records that changed btw t1 and t2, which includes rec1 at v3. -- 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]
