get_vector_load_job_log
Use the get vector load job log operation to retrieve log output for a vector load job.
Parameters
| Parameter | Type | Value Range | Required | Default | Description | Notes |
|---|---|---|---|---|---|---|
load_job_name |
str |
Valid string | Yes | No default | Name of the load job. | Use a job name returned by load_vectors() or list_vector_load_jobs(). |
Raises
InvalidLoadJobNameFormatError is raised when the load job name is invalid. ResourceNotFoundError is raised when the job does not exist. InvalidLoadJobLogError is raised until the job reaches a terminal state: SUCCEEDED, FAILED, STOPPED, or BROKEN.
Get a vector load job log
job_log = client.get_vector_load_job_log(
load_job_name="VECDB_LOAD_ABC123"
)
Return type JobLogResponse
Returns JSON response containing log file metadata and contents.
Example successful response
{
"log_date": "2026-07-27T07:12:01.517747Z",
"job_name": "VECDB_LOAD_575FD66FCCF805F1E063324946644650",
"status": "SUCCEEDED",
"error": "0",
"additional_info": null,
"actual_start_date": "2026-07-27T07:11:46.725187Z",
"run_duration": "PT15S",
"links": [
{
"rel": "collection",
"href": ".../vecdb/load/jobs/VECDB_LOAD_575FD66FCCF805F1E063324946644650/"
}
]
}
Example failed response
A failed load uses the same response shape, with failure details in these fields:
{
"status": "FAILED",
"error": "<oracle_error_code>",
"additional_info": "<Oracle error details>"
}