Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Request for new functionality
View staffing
Description
What you would like to accomplish: Currently it is not allowed to specify an existing output table in BigQuery as the destination of the prediction results.
The suggested feature is to include the possibility of selecting an existing table as destination and allow overwriting of that table or appending the new prediction to it.
How this might work:
bq://project_id.dataset.table
with an existing table.WRITE_APPEND
to append the data orWRITE_TRUNCATE
to overwrite the table.This might be useful if we are only interested in the latest batch prediction. Then there is no need to filter by timestamp the tables in the dataset to get the latest one in case this is just a step in a larger workflow of the data.
If applicable, reasons why alternative solutions are not sufficient: Alternatives involve writing a custom script that first submits the prediction job, removes the older predictions table after or concatenates the tables if the desired operation was to append the data.
Adding the possibility of overwriting or appending data to an existing table makes this process cleaner and easier.