job_info {zoltr} | R Documentation |
Get a job's information
Description
Gets a job's information that can be used to track the job's progress. Jobs represent long-running asynchronous activities like uploading a file (e.g., a forecast or truth) or running a query.
Usage
job_info(zoltar_connection, job_url)
Arguments
zoltar_connection |
A |
job_url |
URL of a valid job in zoltar_connection |
Value
A list
of job information for the passed job_url. it has these names:
id, url, status, user, created_at, updated_at, failure_message, input_json, output_json
Examples
## Not run:
the_job_info <- job_info(conn, "http://example.com/api/job/2/")
## End(Not run)
[Package zoltr version 1.0.1 Index]