release-26.2: sql/importer: fix TestUniqueUUID timeout#166347
Open
blathers-crl[bot] wants to merge 1 commit intorelease-26.2from
Open
release-26.2: sql/importer: fix TestUniqueUUID timeout#166347blathers-crl[bot] wants to merge 1 commit intorelease-26.2from
blathers-crl[bot] wants to merge 1 commit intorelease-26.2from
Conversation
Disable elastic CPU control in TestUniqueUUID to prevent the test from exceeding the 15m timeout. The test imports 50,000 rows across three tables with UUID/random primary key defaults. When the metamorphic constant `import-row-count-validation` selects `sync` mode, each import synchronously waits for an INSPECT validation job that scans the imported data. Combined with elastic CPU throttling (which was recently enabled for import jobs), the cumulative scan time across the three imports can exceed the test timeout. This mirrors the fix applied to other import tests in bda9189. Resolves: #166130 Epic: None Release note: None Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
5f1518b to
673fe25
Compare
Author
|
Thanks for opening a backport. Before merging, please confirm that the change does not break backwards compatibility and otherwise complies with the backport policy. Include a brief release justification in the PR description explaining why the backport is appropriate. All backports must be reviewed by the TL for the owning area. While the stricter LTS policy does not yet apply, please exercise judgment and consider gating non-critical changes behind a disabled-by-default feature flag when appropriate. |
Member
yuzefovich
approved these changes
Mar 21, 2026
Member
yuzefovich
left a comment
There was a problem hiding this comment.
@yuzefovich reviewed 1 file and all commit messages.
Reviewable status:complete! 0 of 0 LGTMs obtained (waiting on DrewKimball and ZhouXing19).
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.
Backport 1/1 commits from #166309 on behalf of @mw5h.
Summary
Disable elastic CPU control in
TestUniqueUUIDto prevent the test fromexceeding the 15m timeout. The test imports 50,000 rows across three
tables with UUID/random primary key defaults.
When the metamorphic constant
import-row-count-validationselectssyncmode, each import synchronously waits for an INSPECT validationjob that scans the imported data. Combined with elastic CPU throttling
(which was recently enabled for import jobs), the cumulative scan time
across the three imports can exceed the test timeout.
This mirrors the fix applied to other import tests in bda9189.
Resolves: #166130
Epic: None
🤖 Generated with Claude Code
Release justification: