-
Notifications
You must be signed in to change notification settings - Fork 304
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
feat(bigquery): add support of model for extract job #71
feat(bigquery): add support of model for extract job #71
Conversation
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.
Looks good generally, just a few minor remarks.
google/cloud/bigquery/job.py
Outdated
google.cloud.bigquery.table.TableReference, \ | ||
google.cloud.bigquery.model.ModelReference \ | ||
]): | ||
Table or Model into which data is to be loaded. |
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.
Shouldn't this be "from which" instead for "into which", considering that it's a source?
…into bigquery_issue_60
@shollyman PTAL! |
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.
Do we have a model lifecycle test in the integration tests? If so, let's add extraction to the lifecycle. This feature is now live so no special setup is required.
google/cloud/bigquery/job.py
Outdated
google.cloud.bigquery.table.TableReference, \ | ||
google.cloud.bigquery.model.ModelReference \ | ||
]): | ||
Table or Model from which data is to be loaded. |
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 s/loaded/extracted/ in the 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.
@shollyman We don't have any model lifecycle test in the integration tests.
…into bigquery_issue_60
Fixes #60