Description Usage Arguments API documentation Examples
To perform a job, see api-perform. These functions all retrieve metadata (in various forms) about an existing job.
1 2 3 4 5 6 7 | bq_job_meta(x, fields = NULL)
bq_job_status(x)
bq_job_show_statistics(x)
bq_job_wait(x, quiet = getOption("bigrquery.quiet"), pause = 0.5)
|
x |
A bq_job |
fields |
An optional field specification for partial response |
quiet |
If |
pause |
amount of time to wait between status requests |
1 2 3 4 5 6 7 8 9 10 | if (bq_testable()) {
jobs <- bq_project_jobs(bq_test_project())
jobs[[1]]
# Show statistics about job
bq_job_show_statistics(jobs[[1]])
# Wait for job to complete
bq_job_wait(jobs[[1]])
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.