[fix](regression) Run restore auth case non-concurrently on branch-4.1 (#65668) - #67620
Open
gavinchou wants to merge 1 commit into
Open
[fix](regression) Run restore auth case non-concurrently on branch-4.1 (#65668)#67620gavinchou wants to merge 1 commit into
gavinchou wants to merge 1 commit into
Conversation
apache#65668) ### What problem does this PR solve? Related PR: apache#65668 Problem Summary: Backport the master fix to branch-4.1. A concurrent backup submission in test_ddl_restore_auth can hold BackupHandler's global submission lock long enough for test_ddl_repository_auth to exceed the 10-second lock wait when dropping its repository. Add test_ddl_restore_auth to the nonConcurrent group, consistent with test_ddl_backup_auth. Resolve the cherry-pick context conflict against the older branch-4.1 suite declaration while retaining its test body. ### Release note None ### Check List (For Author) - Test: git diff --check and static review of the branch-4.1 scheduler. The regression suite was not run locally; this workspace has no running Doris test cluster. - Behavior changed: Yes, the regression suite runs in the serial phase. - Does this need documentation: No. (cherry picked from commit e7b0e4e)
Contributor
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
Contributor
|
skip buildall |
hello-stephen
approved these changes
Sep 7, 2026
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 free
to 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?
Related PR: #65668
Backport #65668 to
branch-4.1. Whentest_ddl_restore_authsubmits a backup concurrently with the repository authorization case, it can holdBackupHandler's global submission lock beyond the latter's 10-secondDROP REPOSITORYlock timeout.Add
test_ddl_restore_authto thenonConcurrentgroup, consistent withtest_ddl_backup_auth. The original commit ise7b0e4e22d538447f3bd31ecf89c5d2cf5b16665. The cherry-pick required resolving context around the older suite declaration; the final change is the same one-line group addition.Release note
None
Check List (For Author)
git diff --checkand review of thebranch-4.1scheduler. It runsnonConcurrentsuites through its single-thread executor after ordinary suites complete.Check List (For Reviewer who merge this PR)