-
Notifications
You must be signed in to change notification settings - Fork 14
Add arrow_options to read_gbq #46
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
Conversation
|
Oops let me re-push to my fork and re-open |
|
I think repo secrets are used here in CI, so PRing from a branch and not a fork is the right way to go 👍 |
|
@j-bennet @jrbourbeau CI is happy now post-#48 if you would like to take a look 🙂 |
dask_bigquery/core.py
Outdated
| read_kwargs: dict | ||
| kwargs to pass to read_rows() | ||
| arrow_options: dict | ||
| kwargs to pass to record_batch.to_pandas() when converting from pyarrow to pandas |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe add a link to https://arrow.apache.org/docs/python/generated/pyarrow.RecordBatch.html#pyarrow.RecordBatch.to_pandas, so people can easily look up those kwargs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good idea, added!
j-bennet
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thank you @bnaul.

Fixes #45.
Followed the same pattern pointed out by @j-bennet here.