Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Storage: add more retries for 429s during teardown operations. #8112

Merged
merged 1 commit into from
May 23, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions storage/tests/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ def _bad_copy(bad_request):


retry_429 = RetryErrors(exceptions.TooManyRequests, max_tries=6)
retry_429_harder = RetryErrors(exceptions.TooManyRequests, max_tries=10)
retry_429_503 = RetryErrors(
[exceptions.TooManyRequests, exceptions.ServiceUnavailable], max_tries=6
)
Expand Down Expand Up @@ -110,7 +111,7 @@ def setUp(self):
def tearDown(self):
for bucket_name in self.case_buckets_to_delete:
bucket = Config.CLIENT.bucket(bucket_name)
retry_429(bucket.delete)()
retry_429_harder(bucket.delete)()

def test_create_bucket(self):
new_bucket_name = "a-new-bucket" + unique_resource_id("-")
Expand Down Expand Up @@ -299,7 +300,7 @@ def test_copy_existing_file_with_user_project(self):
self.assertEqual(base_contents, copied_contents)
finally:
for blob in to_delete:
retry_429(blob.delete)()
retry_429_harder(blob.delete)()

@unittest.skipUnless(USER_PROJECT, "USER_PROJECT not set in environment.")
def test_bucket_get_blob_with_user_project(self):
Expand Down Expand Up @@ -1011,7 +1012,7 @@ def test_compose_with_user_project(self):
composed = destination.download_as_string()
self.assertEqual(composed, SOURCE_1 + SOURCE_2)
finally:
retry_429(created.delete)(force=True)
retry_429_harder(created.delete)(force=True)


class TestStorageRewrite(TestStorageFiles):
Expand Down Expand Up @@ -1085,7 +1086,7 @@ def test_rewrite_add_key_with_user_project(self):

self.assertEqual(source.download_as_string(), dest.download_as_string())
finally:
retry_429(created.delete)(force=True)
retry_429_harder(created.delete)(force=True)

@unittest.skipUnless(USER_PROJECT, "USER_PROJECT not set in environment.")
def test_rewrite_rotate_with_user_project(self):
Expand Down Expand Up @@ -1115,7 +1116,7 @@ def test_rewrite_rotate_with_user_project(self):

self.assertEqual(dest.download_as_string(), source_data)
finally:
retry_429(created.delete)(force=True)
retry_429_harder(created.delete)(force=True)


class TestStorageUpdateStorageClass(TestStorageFiles):
Expand Down Expand Up @@ -1185,7 +1186,7 @@ def tearDown(self):
with Config.CLIENT.batch():
for bucket_name in self.case_buckets_to_delete:
bucket = Config.CLIENT.bucket(bucket_name)
retry_429(bucket.delete)()
retry_429_harder(bucket.delete)()

@staticmethod
def event_types():
Expand Down Expand Up @@ -1456,7 +1457,7 @@ def setUp(self):
def tearDown(self):
for bucket_name in self.case_buckets_to_delete:
bucket = Config.CLIENT.bucket(bucket_name)
retry_429(bucket.delete)()
retry_429_harder(bucket.delete)()

def test_bucket_w_retention_period(self):
import datetime
Expand Down Expand Up @@ -1628,7 +1629,7 @@ def setUp(self):
def tearDown(self):
for bucket_name in self.case_buckets_to_delete:
bucket = Config.CLIENT.bucket(bucket_name)
retry_429(bucket.delete)(force=True)
retry_429_harder(bucket.delete)(force=True)

def test_new_bucket_w_bpo(self):
new_bucket_name = "new-w-bpo" + unique_resource_id("-")
Expand Down