Uh oh!
There was an error while loading. Please reload this page.
[opt](routine-load) self-adaption backoff timeout - #32227
Merged
Conversation
doris-robot
commented
Mar 14, 2024
Thank you for your contribution to Apache Doris. |
sollhui
commented
Mar 14, 2024
ContributorAuthor
run buildall |
doris-robot
commented
Mar 14, 2024
TPC-H: Total hot run time: 38181 ms |
doris-robot
commented
Mar 15, 2024
TPC-H: Total hot run time: 38503 ms |
sollhui
commented
Mar 15, 2024
ContributorAuthor
run buildall |
doris-robot
commented
Mar 15, 2024
TPC-H: Total hot run time: 38415 ms |
sollhui
commented
Mar 18, 2024
ContributorAuthor
run buildall |
sollhui
commented
Mar 19, 2024
ContributorAuthor
run buildall |
Contributor
PR approved by at least one committer and no changes requested. |
Contributor
PR approved by anyone and no changes requested. |
feifeifeimoon
approved these changes
Mar 20, 2024
liaoxin01 pushed a commit
that referenced
this pull request
Sep 19, 2024
If IO/CPU resources are tight, routine load task is likely to timeout. The current method is self-adaption backoff #32227, but the problem is it will do some ineffective work to match proper timeout. For one routine load task, a better way to handle task is finishing executing instead of retry when resources are tight. Therefore, this pr increase timeout to make "task always finish even if it is slow when resources are tight".
dataroaring pushed a commit
that referenced
this pull request
Sep 19, 2024
If IO/CPU resources are tight, routine load task is likely to timeout. The current method is self-adaption backoff #32227, but the problem is it will do some ineffective work to match proper timeout. For one routine load task, a better way to handle task is finishing executing instead of retry when resources are tight. Therefore, this pr increase timeout to make "task always finish even if it is slow when resources are tight".
This was referenced Sep 23, 2024
liaoxin01 pushed a commit
that referenced
this pull request
Sep 25, 2024
) pick #40818 If IO/CPU resources are tight, routine load task is likely to timeout. The current method is self-adaption backoff #32227, but the problem is it will do some ineffective work to match proper timeout. For one routine load task, a better way to handle task is finishing executing instead of retry when resources are tight. Therefore, this pr increase timeout to make "task always finish even if it is slow when resources are tight".
dataroaring pushed a commit
that referenced
this pull request
Sep 26, 2024
) pick (#40818) If IO/CPU resources are tight, routine load task is likely to timeout. The current method is self-adaption backoff #32227, but the problem is it will do some ineffective work to match proper timeout. For one routine load task, a better way to handle task is finishing executing instead of retry when resources are tight. Therefore, this pr increase timeout to make "task always finish even if it is slow when resources are tight".
HappenLee pushed a commit
to HappenLee/incubator-doris
that referenced
this pull request
Apr 24, 2026
HappenLee pushed a commit
to HappenLee/incubator-doris
that referenced
this pull request
Apr 24, 2026
If IO/CPU resources are tight, routine load task is likely to timeout. The current method is self-adaption backoff apache#32227, but the problem is it will do some ineffective work to match proper timeout. For one routine load task, a better way to handle task is finishing executing instead of retry when resources are tight. Therefore, this pr increase timeout to make "task always finish even if it is slow when resources are tight".
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.
Proposed changes
Routine load is a long-term import task, assuming that the user has set a relatively small consumption interval, as the BE load changes, there may be a timeout for a certain period of time, leading to the problem of fake death.
Adaptive adjustment of timeout time to address the issue of possible changes in execution time caused by be load.
Further comments
If this is a relatively large or complex change, kick off the discussion at dev@doris.apache.org by explaining why you chose the solution you did and what alternatives you considered, etc...