Uh oh!
There was an error while loading. Please reload this page.
[bugfix](arrowflight) should call done run in on_xxx method to make work in async mode - #60282
Merged
Conversation
yiguolei
commented
Jan 27, 2026
ContributorAuthor
run buildall |
Thearas
commented
Jan 27, 2026
Contributor
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
doris-robot
commented
Jan 27, 2026
TPC-H: Total hot run time: 33220 ms |
doris-robot
commented
Jan 27, 2026
ClickBench: Total hot run time: 28.15 s |
yiguolei
commented
Jan 27, 2026
ContributorAuthor
run buildall |
doris-robot
commented
Jan 27, 2026
TPC-H: Total hot run time: 32567 ms |
doris-robot
commented
Jan 27, 2026
ClickBench: Total hot run time: 28.42 s |
yiguolei
commented
Jan 28, 2026
ContributorAuthor
run beut |
1 similar comment
yiguolei
commented
Jan 28, 2026
ContributorAuthor
run beut |
yiguolei
commented
Jan 28, 2026
ContributorAuthor
run beut |
doris-robot
commented
Jan 28, 2026
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
yiguolei
commented
Jan 28, 2026
ContributorAuthor
run buildall |
doris-robot
commented
Jan 28, 2026
TPC-H: Total hot run time: 32094 ms |
doris-robot
commented
Jan 28, 2026
ClickBench: Total hot run time: 28.15 s |
hello-stephen
commented
Jan 28, 2026
Contributor
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
hello-stephen
commented
Jan 28, 2026
Contributor
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
zclllyybb
approved these changes
Jan 28, 2026
Contributor
PR approved by at least one committer and no changes requested. |
Contributor
PR approved by anyone and no changes requested. |
Uh oh!
There was an error while loading. Please reload this page.
github-actionsBot
pushed a commit
that referenced
this pull request
Jan 29, 2026
…ork in async mode (#60282) there is a logic similar to our FE fetching data from the BE: if the data is not available, it will be added to a waiting queue. Once added to the waiting queue, the guard will invoke the run method automatically. At this point, the data received by the client is actually undefined, yet the status of this undefined value is unexpectedly ok. As a result, the program attempts to read the block value, leading to a dirty read.
ybtsdst pushed a commit
to ybtsdst/doris
that referenced
this pull request
Feb 27, 2026
…od to make work in async mode apache#60282 (apache#60325) Cherry-picked from apache#60282 Co-authored-by: yiguolei <guolei@selectdb.com>
63 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What problem does this PR solve?
there is a logic similar to our FE fetching data from the BE: if the data is not available, it will be added to a waiting queue. Once added to the waiting queue, the guard will invoke the run method automatically.
At this point, the data received by the client is actually undefined, yet the status of this undefined value is unexpectedly ok. As a result, the program attempts to read the block value, leading to a dirty read.
Issue Number: close #xxx
Related PR: #xxx
Problem Summary:
Release note
None
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)