-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[bugfix](load) Add disk capacity check for downstream BE nodes in memtable-on-sink mode #51760
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
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
|
run buildall |
TPC-H: Total hot run time: 34318 ms |
TPC-DS: Total hot run time: 192821 ms |
ClickBench: Total hot run time: 28.72 s |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
|
run buildall |
TPC-H: Total hot run time: 35322 ms |
TPC-DS: Total hot run time: 194907 ms |
ClickBench: Total hot run time: 29.83 s |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
|
run buildall |
TPC-H: Total hot run time: 33918 ms |
TPC-DS: Total hot run time: 185872 ms |
ClickBench: Total hot run time: 29.35 s |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
53b8536 to
5041aa3
Compare
|
run buildall |
TPC-H: Total hot run time: 35476 ms |
TPC-DS: Total hot run time: 188194 ms |
ClickBench: Total hot run time: 30.77 s |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
|
run buildall |
TPC-H: Total hot run time: 34912 ms |
TPC-DS: Total hot run time: 188882 ms |
TPC-DS: Total hot run time: 190632 ms |
ClickBench: Total hot run time: 30.38 s |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
|
run cloud_p0 |
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
95bad35 to
879f459
Compare
|
run buildall |
| RETURN_IF_ERROR(_rowset_builder->init()); | ||
| _rowset_writer = _rowset_builder->rowset_writer(); | ||
|
|
||
| auto tablet_res = ExecEnv::get_tablet(_req.tablet_id); |
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.
u are absolutely right!
However, personally, for variables that are only used within an if statement, I would adopt this approach:
if (auto tablet_res = ExecEnv::get_tablet(_req.tablet_id); tablet_res.has_value()) {...}
if u think so, u can rewrite it~
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.
That's a very good suggestion, I will modify it.
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
879f459 to
ff95c0c
Compare
|
run buildall |
TPC-H: Total hot run time: 35602 ms |
TPC-DS: Total hot run time: 187533 ms |
ClickBench: Total hot run time: 27.54 s |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
|
run cloud_p0 |
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
f626831 to
d073dc4
Compare
|
run buildall |
TPC-H: Total hot run time: 32034 ms |
TPC-DS: Total hot run time: 172402 ms |
ClickBench: Total hot run time: 26.88 s |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
What problem does this PR solve?
Issue Number: close #51735
Problem Summary:
Release note
None
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)