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

BigQuery: 'test_extract_table' flakes with '429 Too Many Request' in bucket creation #5934

Closed
tseaver opened this issue Sep 11, 2018 · 0 comments
Assignees
Labels
api: bigquery Issues related to the BigQuery API. api: dataproc Issues related to the Dataproc API. flaky testing type: process A process-related concern. May include testing, release, or the like.

Comments

@tseaver
Copy link
Contributor

tseaver commented Sep 11, 2018

From: https://circleci.com/gh/GoogleCloudPlatform/google-cloud-python/8007

_______________________ TestBigQuery.test_extract_table ________________________

self = <tests.system.TestBigQuery testMethod=test_extract_table>

    def test_extract_table(self):
        from google.cloud.storage import Client as StorageClient
    
        storage_client = StorageClient()
        local_id = unique_resource_id()
        bucket_name = 'bq_extract_test' + local_id
        blob_name = 'person_ages.csv'
        dataset_id = _make_dataset_id('load_gcs_then_extract')
        table_id = 'test_table'
        table_ref = Config.CLIENT.dataset(dataset_id).table(table_id)
        table = Table(table_ref)
        self.to_delete.insert(0, table)
        self._load_table_for_extract_table(
>           storage_client, ROWS, bucket_name, blob_name, table_ref)

tests/system.py:808: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/system.py:768: in _load_table_for_extract_table
    bucket = storage_client.create_bucket(bucket_name)
../storage/google/cloud/storage/client.py:285: in create_bucket
    bucket.create(client=self, project=project)
../storage/google/cloud/storage/bucket.py:480: in create
    data=properties, _target_object=self)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <google.cloud.storage._http.Connection object at 0x7f16b74e6470>
method = 'POST', path = '/b', query_params = {'project': 'precise-truck-742'}
data = '{"name": "bq_extract_test_8007_1536697977"}'
content_type = 'application/json', headers = None, api_base_url = None
api_version = None, expect_json = True
_target_object = <Bucket: bq_extract_test_8007_1536697977>

    def api_request(self, method, path, query_params=None,
                    data=None, content_type=None, headers=None,
                    api_base_url=None, api_version=None,
                    expect_json=True, _target_object=None):
        """Make a request over the HTTP transport to the API.
    
            You shouldn't need to use this method, but if you plan to
            interact with the API using these primitives, this is the
            correct one to use.
    
            :type method: str
            :param method: The HTTP method name (ie, ``GET``, ``POST``, etc).
                           Required.
    
            :type path: str
            :param path: The path to the resource (ie, ``'/b/bucket-name'``).
                         Required.
    
            :type query_params: dict or list
            :param query_params: A dictionary of keys and values (or list of
                                 key-value pairs) to insert into the query
                                 string of the URL.
    
            :type data: str
            :param data: The data to send as the body of the request. Default is
                         the empty string.
    
            :type content_type: str
            :param content_type: The proper MIME type of the data provided. Default
                                 is None.
    
            :type headers: dict
            :param headers: extra HTTP headers to be sent with the request.
    
            :type api_base_url: str
            :param api_base_url: The base URL for the API endpoint.
                                 Typically you won't have to provide this.
                                 Default is the standard API base URL.
    
            :type api_version: str
            :param api_version: The version of the API to call.  Typically
                                you shouldn't provide this and instead use
                                the default for the library.  Default is the
                                latest API version supported by
                                google-cloud-python.
    
            :type expect_json: bool
            :param expect_json: If True, this method will try to parse the
                                response as JSON and raise an exception if
                                that cannot be done.  Default is True.
    
            :type _target_object: :class:`object`
            :param _target_object:
                (Optional) Protected argument to be used by library callers. This
                can allow custom behavior, for example, to defer an HTTP request
                and complete initialization of the object at a later time.
    
            :raises ~google.cloud.exceptions.GoogleCloudError: if the response code
                is not 200 OK.
            :raises ValueError: if the response content type is not JSON.
            :rtype: dict or str
            :returns: The API response payload, either as a raw string or
                      a dictionary if the response is valid JSON.
            """
        url = self.build_api_url(path=path, query_params=query_params,
                                 api_base_url=api_base_url,
                                 api_version=api_version)
    
        # Making the executive decision that any dictionary
        # data will be sent properly as JSON.
        if data and isinstance(data, dict):
            data = json.dumps(data)
            content_type = 'application/json'
    
        response = self._make_request(
            method=method, url=url, data=data, content_type=content_type,
            headers=headers, target_object=_target_object)
    
        if not 200 <= response.status_code < 300:
>           raise exceptions.from_http_response(response)
E           google.api_core.exceptions.TooManyRequests: 429 POST https://www.googleapis.com/storage/v1/b?project=precise-truck-742: The project exceeded the rate limit for creating and deleting buckets.

../core/google/cloud/_http.py:293: TooManyRequests

There is also a subsequent 404 in the tear-down, which I think we can ignore.

@tseaver tseaver added testing api: bigquery Issues related to the BigQuery API. flaky api: dataproc Issues related to the Dataproc API. labels Sep 11, 2018
@JustinBeckwith JustinBeckwith added the triage me I really want to be triaged. label Sep 12, 2018
@tseaver tseaver added type: process A process-related concern. May include testing, release, or the like. and removed triage me I really want to be triaged. labels Sep 14, 2018
tseaver added a commit that referenced this issue Oct 9, 2018
tseaver added a commit that referenced this issue Oct 10, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api: bigquery Issues related to the BigQuery API. api: dataproc Issues related to the Dataproc API. flaky testing type: process A process-related concern. May include testing, release, or the like.
Projects
None yet
Development

No branches or pull requests

2 participants