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

Revert "Remove remaining Airflow 2.5 backcompat code from Google Prov… #36440

Merged
merged 1 commit into from Dec 26, 2023

Conversation

potiuk
Copy link
Member

@potiuk potiuk commented Dec 26, 2023

…ider (#36366)"

This reverts commit 2c2763f.


^ Add meaningful description above
Read the Pull Request Guidelines for more information.
In case of fundamental code changes, an Airflow Improvement Proposal (AIP) is needed.
In case of a new dependency, check compliance with the ASF 3rd Party License Policy.
In case of backwards incompatible changes please leave a note in a newsfragment file, named {pr_number}.significant.rst or {issue_number}.significant.rst, in newsfragments.

@potiuk potiuk added the full tests needed We need to run full set of tests for this PR to merge label Dec 26, 2023
@boring-cyborg boring-cyborg bot added area:logging area:providers provider:google Google (including GCP) related issues labels Dec 26, 2023
@potiuk
Copy link
Member Author

potiuk commented Dec 26, 2023

I think (though I have no idea how) this one triggered the (pretty repeatable) failure: https://github.com/apache/airflow/actions/runs/7331844040/job/19966037471 :

=================================== FAILURES ===================================
____________ TestGetGcpCredentialsAndProjectId.test_disable_logging ____________

self = <tests.providers.google.cloud.utils.test_credentials_provider.TestGetGcpCredentialsAndProjectId object at 0x7f9947f85e10>
mock_default = <MagicMock name='from_service_account_file' id='140296134658464'>
mock_info = <MagicMock name='from_service_account_info' id='140296134666336'>
mock_file = <MagicMock name='default' id='140296134706992'>
caplog = <_pytest.logging.LogCaptureFixture object at 0x7f993d450880>

    @mock.patch("google.auth.default", return_value=("CREDENTIALS", "PROJECT_ID"))
    @mock.patch(
        "google.oauth2.service_account.Credentials.from_service_account_info",
    )
    @mock.patch(
        "google.oauth2.service_account.Credentials.from_service_account_file",
    )
    def test_disable_logging(self, mock_default, mock_info, mock_file, caplog):
        """Test disable logging in ``get_credentials_and_project_id``"""
    
        # assert no logs
        with caplog.at_level(level=logging.DEBUG, logger=CRED_PROVIDER_LOGGER_NAME):
            caplog.clear()
            get_credentials_and_project_id(disable_logging=True)
            assert not caplog.record_tuples
    
        # assert no debug logs emitted from get_credentials_and_project_id
        with caplog.at_level(level=logging.DEBUG, logger=CRED_PROVIDER_LOGGER_NAME):
            caplog.clear()
            get_credentials_and_project_id(
                keyfile_dict={"private_key": "PRIVATE_KEY"},
                disable_logging=True,
            )
            assert not caplog.record_tuples
    
        # assert no debug logs emitted from get_credentials_and_project_id
        with caplog.at_level(level=logging.DEBUG, logger=CRED_PROVIDER_LOGGER_NAME):
            caplog.clear()
            get_credentials_and_project_id(
                key_path="KEY.json",
                disable_logging=True,
            )
>           assert not caplog.record_tuples
E           assert not [('asyncio', 40, "Task was destroyed but it is pending!\ntask: <Task pending name='Task-73' coro=<<async_generator_asend without __name__>()> wait_for=<Future pending cb=[Task.task_wakeup()]>>")]
E            +  where [('asyncio', 40, "Task was destroyed but it is pending!\ntask: <Task pending name='Task-73' coro=<<async_generator_asend without __name__>()> wait_for=<Future pending cb=[Task.task_wakeup()]>>")] = <_pytest.logging.LogCaptureFixture object at 0x7f993d450880>.record_tuples

tests/providers/google/cloud/utils/test_credentials_provider.py:392: AssertionError
----------------------------- Captured stderr call -----------------------------
ERROR [asyncio] Task was destroyed but it is pending!
task: <Task pending name='Task-73' coro=<<async_generator_asend without __name__>()> wait_for=<Future pending cb=[Task.task_wakeup()]>>
------------------------------ Captured log call -------------------------------
ERROR    asyncio:base_events.py:1758 Task was destroyed but it is pending!
task: <Task pending name='Task-73' coro=<<async_generator_asend without __name__>()> wait_for=<Future pending cb=[Task.task_wakeup()]>>
----- generated xml file: /files/test_result-providers_google-postgres.xml -----

I don't think this is a direct cause - the error looks like a side-effect of some asyncio test - i just want to see if reverting it will bring the green status again (seems that it started to happen after this one was merged).

@potiuk
Copy link
Member Author

potiuk commented Dec 26, 2023

It's a very strange one -- very consistently happening for Postgres 14 + Pyhon 3.10 (and only for that combination (!??!)... If that one will not fail, I plan to merge it and then we can try to start looking for the reason.

@potiuk
Copy link
Member Author

potiuk commented Dec 26, 2023

Yep. Looks like reverting this change brings bavck "green" status.

Copy link
Member

@hussein-awala hussein-awala left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, I will take a look once this one is merged.

@potiuk potiuk merged commit 794ce73 into apache:main Dec 26, 2023
78 checks passed
@potiuk potiuk deleted the revert-backcompat-fix branch December 26, 2023 22:48
potiuk added a commit to potiuk/airflow that referenced this pull request Dec 27, 2023
There is a very strange error in our test suite which only occurs in
Postgres + Python 3.10 combination of tests where apparently a
non-cancelled test from pytest-asyncio fixtured event loop is cancelled
much later in different tests, producing an unexpected log entry and
failing TestGetGcpCredentialsAndProjectId.test_disable_logging.

See apache#36440 and likely the
root cause is pytest-dev/pytest-asyncio#200

This PR will allow to test the hypothesis and might help to iterate
over potential solutions.
@potiuk
Copy link
Member Author

potiuk commented Dec 27, 2023

I believe this error is manifestation of this pytest-asyncIo issue: pytest-dev/pytest-asyncio#200

It looks like the way how pytest-asyncio implements their pytest fixtures is that it (sometimes) creates a new event loop to handle tests and when there are some pending tasks those tests are not cleaned immediately when the fixture event loop is leaving the test scope. So seems that the change in airflow/providers/google/cloud/log/stackdriver_task_handler.py (this is where asyncio code is used) is triggering a condition where stackdriver's test is leaving an asyncio task behind and that task only gets cancelled much later - and accidentally it produces a log entry in the same logger that is then verified in test_disable_logging .

@potiuk
Copy link
Member Author

potiuk commented Dec 27, 2023

Added #36442 to test the hypothesis

potiuk added a commit to potiuk/airflow that referenced this pull request Dec 27, 2023
There is a very strange error in our test suite which only occurs in
Postgres + Python 3.10 combination of tests where apparently a
non-cancelled test from pytest-asyncio fixtured event loop is cancelled
much later in different tests, producing an unexpected log entry and
failing TestGetGcpCredentialsAndProjectId.test_disable_logging.

See apache#36440 and likely the
root cause is pytest-dev/pytest-asyncio#200

This PR will allow to test the hypothesis and might help to iterate
over potential solutions.
potiuk added a commit to potiuk/airflow that referenced this pull request Dec 27, 2023
There is a very strange error in our test suite which only occurs in
Postgres + Python 3.10 combination of tests where apparently a
non-cancelled test from pytest-asyncio fixtured event loop is cancelled
much later in different tests, producing an unexpected log entry and
failing TestGetGcpCredentialsAndProjectId.test_disable_logging.

See apache#36440 and likely the
root cause is pytest-dev/pytest-asyncio#200

This PR will allow to test the hypothesis and might help to iterate
over potential solutions.
abhishekbhakat pushed a commit to abhishekbhakat/my_airflow that referenced this pull request Mar 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:logging area:providers full tests needed We need to run full set of tests for this PR to merge provider:google Google (including GCP) related issues
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants