-
Notifications
You must be signed in to change notification settings - Fork 413
Support Non-recursive CTE spill in TiFlash #10381
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
base: master
Are you sure you want to change the base?
Conversation
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
/retest |
|
/cc @gengliqi |
|
/cc @windtalker @gengliqi |
|
/cc @gengliqi |
|
|
||
| ~CTE() | ||
| { | ||
| // TODO delete --------------- |
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.
It seems that a lot of code should be deleted.
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.
It seems that a lot of code should be deleted.
I will delete them before merge of the pr
dbms/src/Operators/CTESinkOp.cpp
Outdated
| { | ||
| case CTEOpStatus::WAIT_SPILL: | ||
| // CTE is spilling blocks to disk, we need to wait the finish of spill | ||
| DB::setNotifyFuture(&(this->io_notifier)); |
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.
| DB::setNotifyFuture(&(this->io_notifier)); | |
| setNotifyFuture(&(this->io_notifier)); |
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.
done
dbms/src/Operators/CTESinkOp.cpp
Outdated
| return OperatorStatus::CANCELLED; | ||
| case CTEOpStatus::WAIT_SPILL: | ||
| // CTE is spilling blocks to disk, we need to wait the finish of spill | ||
| DB::setNotifyFuture(&(this->io_notifier)); |
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.
ditto.
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.
ditto.
done
dbms/src/Operators/CTESourceOp.cpp
Outdated
| block = this->block_from_disk; | ||
| this->block_from_disk.clear(); |
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.
| block = this->block_from_disk; | |
| this->block_from_disk.clear(); | |
| block.swap(block_from_disk); |
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.
done
What problem does this PR solve?
Issue Number: close #10085
Problem Summary:
What is changed and how it works?
Check List
Tests
Side effects
Documentation
Release note