Gets status information about a specified load job
Source:R/neptunedata_operations.R
neptunedata_get_loader_job_status.RdGets status information about a specified load job. Neptune keeps track of the most recent 1,024 bulk load jobs, and stores the last 10,000 error details per job.
See https://www.paws-r-sdk.com/docs/neptunedata_get_loader_job_status/ for full documentation.
Usage
neptunedata_get_loader_job_status(
loadId,
details = NULL,
errors = NULL,
page = NULL,
errorsPerPage = NULL
)Arguments
- loadId
[required] The load ID of the load job to get the status of.
- details
Flag indicating whether or not to include details beyond the overall status (
TRUEorFALSE; the default isFALSE).- errors
Flag indicating whether or not to include a list of errors encountered (
TRUEorFALSE; the default isFALSE).The list of errors is paged. The
pageanderrorsPerPageparameters allow you to page through all the errors.- page
The error page number (a positive integer; the default is
1). Only valid when theerrorsparameter is set toTRUE.- errorsPerPage
The number of errors returned in each page (a positive integer; the default is
10). Only valid when theerrorsparameter set toTRUE.