-
Notifications
You must be signed in to change notification settings - Fork 706
feat(stream): add reset for stream executor #557
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
Conversation
|
please take a look at #467 |
Codecov Report
@@ Coverage Diff @@
## main #557 +/- ##
============================================
- Coverage 72.89% 72.83% -0.07%
Complexity 2683 2683
============================================
Files 882 882
Lines 49067 49110 +43
Branches 1557 1557
============================================
+ Hits 35769 35770 +1
- Misses 12493 12535 +42
Partials 805 805
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
I agree, and I will work on full recovery firstly. This PR is just a pre work for partial failover. |
* add barrier monitor * fix * fix * x * x
fuyufjh
left a comment
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.
Generally LGTM
|
|
||
| fn init(&mut self, _epoch: u64) -> Result<()> { | ||
| unreachable!() | ||
| } |
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.
(unrelated to this PR) @MrCroxx This method was only implemented by BatchQueryExecutor and used by Chain, so perhaps it should not be added to the interface of streaming operators, I think.
What's changed and what's your intention?
First step for introducing rollback barrier.
Checklist
Refer to a related PR or issue link (optional)
part of #467