-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce sleep in tests to avoid bigquery rate limits (#2110)
We're encountering difficulties achieving success with the integration test `test_aql_replace_existing_table` in our CI environment. The issue stems from `Google BigQuery` imposing rate limits on table operations—specifically, restricting them to `5` per `10` seconds per table. As a consequence, our CI pipeline fails, thereby hindering the release of version `1.18.0.` The rate limits are documented here: https://cloud.google.com/bigquery/quotas#standard_tables Initially, I contemplated skipping this test in CI. However, implementing a `10s` sleep for the problematic `BigQuery` test appears to circumvent the rate limit error, resulting in a fully successful CI build. I will cherrypick this PR in the release branch.
- Loading branch information
1 parent
0436fb9
commit e9127df
Showing
3 changed files
with
17 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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