nsivabalan commented on issue #6058:
URL: https://github.com/apache/hudi/issues/6058#issuecomment-1210121271

   Let me try to explain how incremental query works. 
   
   Lets say, you have made 10 commits to hudi table.
   out of which first 5 are archived already. 
   So, active timeline only has 5 commits i.e. C6 to C10. 
   
   When you do snapshot query now, you will be able to read all records 
ingested from C1 until C10. 
   But when you trigger incremental query, it fetches records ingested with 
certain commit times. So, starting from C6, lets say you have set end commit to 
C7. what incremental query serves is, only those records which got ingested in 
C6 and C7. C6, bcoz thats the first commit in the active timeline. 
   
   Hope this gives you a picture of how incremental query works. not sure if we 
can do any fix around this. 
   let me know if you have any further question. 
   
   


-- 
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]

Reply via email to