Uh oh!
There was an error while loading. Please reload this page.
[improve](routine-load) optimize routine load job auto resume policy - #35266
Merged
Conversation
doris-robot
commented
May 23, 2024
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
sollhui
commented
May 23, 2024
ContributorAuthor
run buildall |
doris-robot
commented
May 23, 2024
TPC-H: Total hot run time: 39787 ms |
doris-robot
commented
May 23, 2024
TPC-DS: Total hot run time: 169313 ms |
doris-robot
commented
May 23, 2024
ClickBench: Total hot run time: 30.29 s |
sollhui
commented
May 23, 2024
ContributorAuthor
run buildall |
doris-robot
commented
May 23, 2024
TPC-H: Total hot run time: 41657 ms |
doris-robot
commented
May 23, 2024
TPC-DS: Total hot run time: 173065 ms |
doris-robot
commented
May 23, 2024
ClickBench: Total hot run time: 29.95 s |
sollhui
commented
May 23, 2024
ContributorAuthor
run buildall |
doris-robot
commented
May 23, 2024
TPC-H: Total hot run time: 40809 ms |
doris-robot
commented
May 23, 2024
TPC-DS: Total hot run time: 169486 ms |
doris-robot
commented
May 23, 2024
ClickBench: Total hot run time: 30.31 s |
sollhui
commented
May 24, 2024
ContributorAuthor
run buildall |
1 similar comment
sollhui
commented
May 24, 2024
ContributorAuthor
run buildall |
doris-robot
commented
May 24, 2024
TPC-H: Total hot run time: 40944 ms |
doris-robot
commented
May 24, 2024
TPC-DS: Total hot run time: 169354 ms |
doris-robot
commented
May 24, 2024
ClickBench: Total hot run time: 30.66 s |
sollhui
commented
May 24, 2024
ContributorAuthor
run buildall |
doris-robot
commented
May 24, 2024
TPC-H: Total hot run time: 40927 ms |
doris-robot
commented
May 24, 2024
TPC-DS: Total hot run time: 168773 ms |
doris-robot
commented
May 24, 2024
ClickBench: Total hot run time: 30.6 s |
dataroaring
commented
Jun 5, 2024
Contributor
run buildall |
doris-robot
commented
Jun 5, 2024
TPC-H: Total hot run time: 40861 ms |
doris-robot
commented
Jun 5, 2024
TPC-DS: Total hot run time: 170686 ms |
doris-robot
commented
Jun 5, 2024
ClickBench: Total hot run time: 31.17 s |
sollhui
commented
Jun 5, 2024
ContributorAuthor
run buildall |
doris-robot
commented
Jun 5, 2024
TPC-H: Total hot run time: 40628 ms |
Contributor
PR approved by at least one committer and no changes requested. |
sollhui
commented
Jun 7, 2024
ContributorAuthor
run buildall |
doris-robot
commented
Jun 7, 2024
TPC-H: Total hot run time: 39550 ms |
doris-robot
commented
Jun 7, 2024
TPC-DS: Total hot run time: 173546 ms |
Contributor
PR approved by at least one committer and no changes requested. |
doris-robot
commented
Jun 7, 2024
ClickBench: Total hot run time: 30.66 s |
liaoxin01
approved these changes
Jun 7, 2024
dataroaring pushed a commit
that referenced
this pull request
Jun 13, 2024
…35266) ## Proposed changes When some exception occur, such as `get offset failed ` for network isolation or be node down when upgrade, job will pause unexpectedly. Therefore, Doris introduce auto resume to keep job stable in #2958. **But currently there are some issues with this policy:** - If the fault recovery time is relatively long, such as the downtime of BE, then after auto resume three times, it will be completely unable to automatically resume. But in reality, it can be restored by automatically resume. **Improvement measures:** - Unrestricted retry attempts to solve the problem of automatic resume caused by long recovery time. - Add the backoff algorithm to solve the problem of some resume being invalid, such as Kafka having problems, but Doris still having a high resume frequency. The maximum backoff time is five minutes to avoid the difficulty of recovery caused by too much backoff time.
dataroaring pushed a commit
that referenced
this pull request
Jul 7, 2024
dataroaring pushed a commit
that referenced
this pull request
Jul 8, 2024
Closed
mongo360 pushed a commit
to mongo360/doris
that referenced
this pull request
Aug 16, 2024
HappenLee pushed a commit
to HappenLee/incubator-doris
that referenced
this pull request
Apr 24, 2026
…pache#35266) ## Proposed changes When some exception occur, such as `get offset failed ` for network isolation or be node down when upgrade, job will pause unexpectedly. Therefore, Doris introduce auto resume to keep job stable in apache#2958. **But currently there are some issues with this policy:** - If the fault recovery time is relatively long, such as the downtime of BE, then after auto resume three times, it will be completely unable to automatically resume. But in reality, it can be restored by automatically resume. **Improvement measures:** - Unrestricted retry attempts to solve the problem of automatic resume caused by long recovery time. - Add the backoff algorithm to solve the problem of some resume being invalid, such as Kafka having problems, but Doris still having a high resume frequency. The maximum backoff time is five minutes to avoid the difficulty of recovery caused by too much backoff time.
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
When some exception occur, such as
get offset failedfor network isolation or be node down when upgrade, job will pause unexpectedly. Therefore, Doris introduce auto resume to keep job stable in #2958.But currently there are some issues with this policy:
Improvement measures:
Unrestricted retry attempts to solve the problem of automatic resume caused by long recovery time.
Add the backoff algorithm to solve the problem of some resume being invalid, such as Kafka having problems, but Doris still having a high resume frequency. The maximum backoff time is five minutes to avoid the difficulty of recovery caused by too much backoff time.