aws.neptunedata.get_loader_job_status
Example SQL Queries
SELECT * FROMaws.neptunedata.get_loader_job_statusWHERE"load_id" = 'VALUE';Description
Gets 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 Neptune Loader Get-Status API for more information.
When invoking this operation in a Neptune cluster that has IAM authentication enabled, the IAM user or role making the request must have a policy attached that allows the neptune-db:GetLoaderJobStatus IAM action in that cluster..
Table Definition
| Column Name | Column Data Type |
|---|---|
| load_id Required Input Column The load ID of the load job to get the status of. | VARCHAR |
| details Input Column Flag indicating whether or not to include details beyond the overall status (TRUE or FALSE; the default is FALSE). | BOOLEAN |
| errors Input Column Flag indicating whether or not to include a list of errors encountered (TRUE or FALSE; the default is FALSE). The list of errors is paged. The page and errorsPerPage parameters allow you to page through all the errors. | BOOLEAN |
| errors_per_page Input Column The number of errors returned in each page (a positive integer; the default is 10). Only valid when the errors parameter set to TRUE. | BIGINT |
| page Input Column The error page number (a positive integer; the default is 1). Only valid when the errors parameter is set to TRUE. | BIGINT |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| payload Status information about the load job, in a layout that could look like this: | VARCHAR |
| status The HTTP response code for the request. | VARCHAR |