You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by "bithw1 (via GitHub)" <gi...@apache.org> on 2023/04/02 10:18:30 UTC

[GitHub] [hudi] bithw1 opened a new issue, #8359: [SUPPORT]What's the behavior when doing flink query hudi table with read.end-commit set and read.start-commit not set

bithw1 opened a new issue, #8359:
URL: https://github.com/apache/hudi/issues/8359

   Hi,
   
   I have a hudi table of COW type.
   
   The table has 5 commits, and one letter is inserted in each commit
   
   
   ```
         20230402180146498 A
         20230402180157572 B
         20230402180209196 C
         20230402180218522 D
         20230402180228801 E
   ```
   
   Then, I execute a flink query against this table with the reading option, `'read.end-commit'='20230402180209196'`(the third commit)
   
   From the result, only C are queried out, A and B are not queried out.
   
   I have thought it is a snapshot query until time `20230402180209196`, that is, A,B,C should be queried out.
   
   
   I would ask what's the behavior  with `read.end-commit set and read.start-commit not set`, how to unserstand the query result,
   
   Thanks.
   
   
   
   
   


-- 
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: commits-unsubscribe@hudi.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] bithw1 closed issue #8359: [SUPPORT]What's the behavior when doing flink query hudi table with read.end-commit set and read.start-commit not set

Posted by "bithw1 (via GitHub)" <gi...@apache.org>.
bithw1 closed issue #8359: [SUPPORT]What's the behavior when doing flink query hudi table with read.end-commit set and read.start-commit not set
URL: https://github.com/apache/hudi/issues/8359


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] danny0405 commented on issue #8359: [SUPPORT]What's the behavior when doing flink query hudi table with read.end-commit set and read.start-commit not set

Posted by "danny0405 (via GitHub)" <gi...@apache.org>.
danny0405 commented on issue #8359:
URL: https://github.com/apache/hudi/issues/8359#issuecomment-1493684613

   By default, the `read.start-commit` is the latest commit on the Hudi table, since you also declare the `read.end-commit`, then `read.start-commit` should equal to `read.end-commit`, finally, only the `read.end-commit` is queried and output.


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] bithw1 commented on issue #8359: [SUPPORT]What's the behavior when doing flink query hudi table with read.end-commit set and read.start-commit not set

Posted by "bithw1 (via GitHub)" <gi...@apache.org>.
bithw1 commented on issue #8359:
URL: https://github.com/apache/hudi/issues/8359#issuecomment-1493786169

   Thanks @danny0405 ,understood,thanks!


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org