-
Notifications
You must be signed in to change notification settings - Fork 602
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: finish source backfill immediately for scan.startup.mode=latest #20285
Conversation
This is a follow up of #18342. For "there's no history data to backfill at all", we just checked `low_watermark == high_watermark`, but `start_offset == high_watermark-1` is also a case. We may meet this case when `scan.startup.mode=latest`: #20083 (comment) Signed-off-by: xxchan <[email protected]>
statement ok | ||
create materialized view mv_latest as select * from s_latest; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Before this PR, this DDL will be blocked.
Signed-off-by: xxchan <[email protected]>
This pull request has been modified. If you want me to regenerate unit test for any of the files related, please find the file in "Files Changed" tab and add a comment |
…20285) Signed-off-by: xxchan <[email protected]>
…20285) Signed-off-by: xxchan <[email protected]>
…20285) (#20289) Signed-off-by: xxchan <[email protected]> Co-authored-by: xxchan <[email protected]>
…20285) (#20290) Signed-off-by: xxchan <[email protected]> Co-authored-by: xxchan <[email protected]>
This is a follow up of #18342.
For "there's no history data to backfill at all", we just checked
low_watermark == high_watermark
, butstart_offset == high_watermark-1
is also a case.We may meet this case when
scan.startup.mode=latest
: #20083 (comment)Signed-off-by: xxchan [email protected]
I hereby agree to the terms of the RisingWave Labs, Inc. Contributor License Agreement.
What's changed and what's your intention?
Checklist
Documentation
Release note