python-bigquery-pandas icon indicating copy to clipboard operation
python-bigquery-pandas copied to clipboard

tests.system.test_gbq: test_verify_schema_fails_different_structure failed

Open flaky-bot[bot] opened this issue 3 years ago • 1 comments

This test failed!

To configure my behavior, see the Flaky Bot documentation.

If I'm commenting on this issue too often, add the flakybot: quiet label and I will stop commenting.


commit: 645b6d2a994e36beacf6694bb3c7c1e654fb47f2 buildURL: Build Status, Sponge status: failed

Test output
bigquery_client = 
project_id = 'precise-truck-742'
@pytest.fixture()
def random_dataset_id(bigquery_client: bigquery.Client, project_id: str):
    dataset_id = prefixer.create_prefix()
    full_dataset_id = f"{project_id}.{dataset_id}"
    yield dataset_id
  bigquery_client.delete_dataset(
        full_dataset_id, delete_contents=True, not_found_ok=True
    )

tests/system/conftest.py:83:


.nox/system-3-10/lib/python3.10/site-packages/google/cloud/bigquery/client.py:1571: in delete_dataset self._call_api( .nox/system-3-10/lib/python3.10/site-packages/google/cloud/bigquery/client.py:759: in _call_api return call() .nox/system-3-10/lib/python3.10/site-packages/google/api_core/retry.py:283: in retry_wrapped_func return retry_target( .nox/system-3-10/lib/python3.10/site-packages/google/api_core/retry.py:190: in retry_target return target()


self = <google.cloud.bigquery._http.Connection object at 0x7f4379f2e590> method = 'DELETE' path = '/projects/precise-truck-742/datasets/python_bigquery_pandas_tests_system_20220724132242_a83f61' query_params = {'deleteContents': 'true'}, data = None, content_type = None headers = None, api_base_url = None, api_version = None, expect_json = True _target_object = None, timeout = None, extra_api_info = None

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,
    timeout=_DEFAULT_TIMEOUT,
    extra_api_info=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.

    :type timeout: float or tuple
    :param timeout: (optional) The amount of time, in seconds, to wait
        for the server response.

        Can also be passed as a tuple (connect_timeout, read_timeout).
        See :meth:`requests.Session.request` documentation for details.

    :type extra_api_info: string
    :param extra_api_info: (optional) Extra api info to be appended to
        the X-Goog-API-Client header

    :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,
        timeout=timeout,
        extra_api_info=extra_api_info,
    )

    if not 200 <= response.status_code < 300:
      raise exceptions.from_http_response(response)

E google.api_core.exceptions.Forbidden: 403 DELETE https://bigquery.googleapis.com/bigquery/v2/projects/precise-truck-742/datasets/python_bigquery_pandas_tests_system_20220724132242_a83f61?deleteContents=true&prettyPrint=false: Access Denied: Dataset precise-truck-742:python_bigquery_pandas_tests_system_20220724132242_a83f61: Permission bigquery.tables.delete denied on dataset precise-truck-742:python_bigquery_pandas_tests_system_20220724132242_a83f61 (or it may not exist).

.nox/system-3-10/lib/python3.10/site-packages/google/cloud/_http/init.py:494: Forbidden

flaky-bot[bot] avatar Jul 24 '22 13:07 flaky-bot[bot]

Looks like this issue is flaky. :worried:

I'm going to leave this open and stop commenting.

A human should fix and close this.


When run at the same commit (645b6d2a994e36beacf6694bb3c7c1e654fb47f2), this test passed in one build (Build Status, Sponge) and failed in another build (Build Status, Sponge).

flaky-bot[bot] avatar Jul 24 '22 13:07 flaky-bot[bot]

The latest CI results (sponge) indicate that the BQ table used in test_read_gbq is gone from the public dataset. It looks like this needs to be replaced with a newer table (e.g. tlc_green_trips_2018).

brijk7 avatar Aug 15 '22 01:08 brijk7

It looks like the dataset needs to be changed, not the table.

bigquery-public-data.new_york_taxi_trips.tlc_green_trips_2014 bigquery-public-data.new_york.tlc_green_trips_2014

chalmerlowe avatar Aug 18 '22 20:08 chalmerlowe

This has been fixed by PR #557

chalmerlowe avatar Sep 06 '22 16:09 chalmerlowe