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

[Bug] pyarrow not found, install pyarrow>=3.0.0 #1152

Closed
2 tasks done
mikealfare opened this issue Mar 28, 2024 · 4 comments · Fixed by #1153, #1154, #1155 or #1156
Closed
2 tasks done

[Bug] pyarrow not found, install pyarrow>=3.0.0 #1152

mikealfare opened this issue Mar 28, 2024 · 4 comments · Fixed by #1153, #1154, #1155 or #1156
Assignees
Labels
bug Something isn't working Highest Severity critical bug that must be resolved immediately support

Comments

@mikealfare
Copy link
Contributor

Is this a new bug in dbt-bigquery?

  • I believe this is a new bug in dbt-bigquery
  • I have searched the existing issues, and I could not find an existing issue for this bug

Current Behavior

CI failure: https://github.com/dbt-labs/dbt-bigquery/actions/runs/8459554085/job/23176082535

Expected Behavior

No CI failure

Steps To Reproduce

https://github.com/dbt-labs/dbt-bigquery/actions/runs/8459554085/job/23176082535

Relevant log output

try:
            import pyarrow
        except ImportError as exc:  # pragma: NO COVER
            if raise_if_error:
>               raise exceptions.LegacyPyarrowError(
                    "pyarrow package not found. Install pyarrow version >="
                    f" ***_MIN_PYARROW_VERSION***."
                ) from exc
E               google.cloud.bigquery.exceptions.LegacyPyarrowError: pyarrow package not found. Install pyarrow version >= 3.0.0.

Environment

- OS: all
- Python: all
- dbt-core: 1.8
- dbt-bigquery: 1.8

Additional Context

No response

@mikealfare mikealfare added bug Something isn't working triage support High Severity bug with significant impact that should be resolved in a reasonable timeframe and removed triage labels Mar 28, 2024
@mikealfare mikealfare self-assigned this Mar 28, 2024
@colin-rogers-dbt
Copy link
Contributor

issue in bigquery python: googleapis/python-bigquery#1877

@nvjrepo
Copy link

nvjrepo commented Mar 28, 2024

I have the same issue, someone from DBT team please let me know when this will be resolved
image

@davidwitk
Copy link

Hey 👋 Thanks for fixing this quickly!

Any idea when 1.7.7 will be available on PyPi? Looks like the workflow was cancelled? https://github.com/dbt-labs/dbt-bigquery/actions/runs/8461950493
image

@mikealfare
Copy link
Contributor Author

google-cloud-bigquery has yanked the offending version (3.20.0) from PyPI. The root cause was an undeclared dependency on pyarrow>=3.0.0. Folks should be alright to resume their workflows after reinstalling.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment