Checking the Status of a Batch in a Bulk API Job
This function checks on and returns status information on an existing batch which has already been submitted to Bulk API Job
sf_job_batches_bulk(job_id, api_type = c("Bulk 1.0"), verbose = FALSE)
job_id |
|
api_type |
|
verbose |
|
A tbl_df
of parameters defining the batch identified by the batch_id
This is a legacy function used only with Bulk 1.0.
## Not run: job_info <- sf_create_job_bulk(operation = "query", object = "Account") soql <- "SELECT Id, Name FROM Account LIMIT 10" batch_query_info <- sf_submit_query_bulk(job_id = job_info$id, soql = soql) submitted_batches <- sf_job_batches_bulk(job_id=batch_query_info$jobId) job_close_ind <- sf_close_job_bulk(job_info$id) sf_get_job_bulk(job_info$id) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.