Run the three test suites in parallel - #814
Merged
Merged
Conversation
The needs chain from test to test-sqla to test-sqla-async came from splitting one job into three for per-suite reruns; the suites share no named AWS resources, so they start together and each remains its own job for "Re-run failed jobs". Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
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
.github/workflows/test.yamlno longer chainstest→test-sqla→test-sqla-asyncwithneeds:. The three suites start together. Each stays a separate job, so "Re-run failed jobs" still works per suite.WHY
The chain came from 8c3be28 ("Split CI test jobs for independent retries"). It split one job into three so that failed jobs could be re-run separately; it was not there to limit load. The suites share no named AWS resources:
tests/pyathenacreates a randompyathena_test_<id>schema per process, with S3 data under it.<ident>,<ident>_test_schemaand<ident>_test_schema_2from the plugin's follower ident.Measured on run 36023393076 (#803, before this change):
testtook 10–13 min,test-sqla13–15 min,test-sqla-async16–17 min, each stage 5 Python versions × 8 pytest workers.Load: with the suites in parallel, about 120 pytest workers run at once instead of 40. The account's adjustable Athena quotas are:
TooManyRequestsExceptionfromStartQueryExecutionis retried by the defaultRetryConfig. Metadata throttling is answered from Glue since #803.TEST
just lintpassed, and the workflow YAML parses.TooManyRequestsExceptionor rerun seen in the logs.🤖 Generated with Claude Code