describe_vector_load_job
Use the describe vector load job operation to get the status of a bulk load operation.
Returns details about an asynchronous load job initiated by load_vectors().
Parameters
| Parameter | Type | Value Range | Required | Default | Description | Notes |
|---|---|---|---|---|---|---|
load_job_name |
str |
Valid string | Yes | No default | Name of the load job to describe. | Use a job name returned by load_vectors() or list_vector_load_jobs(). |
Raises InvalidLoadJobNameFormatError is raised when the load job name is invalid.
Describe a vector load job
job = client.describe_vector_load_job(
load_job_name="VECDB_LOAD_ABC123"
)
Return type JobResponse
Returns JSON response containing job status, progress, and statistics.
Example response:
{
"job_name": "VECDB_LOAD_ABC123",
"job_creator": "VECTOR3",
"operation": "LOAD",
"state": "SUCCEEDED",
"links": [
{
"rel": "collection",
"href": "https://<host>/ords/<schema>/_/db-api/stable/vecdb/load/jobs/"
},
{
"rel": "self",
"href": "https://<host>/ords/<schema>/_/db-api/stable/vecdb/load/jobs/vecdb_load_abc123/"
},
{
"rel": "related",
"href": "https://<host>/ords/<schema>/_/db-api/stable/vecdb/load/jobs/vecdb_load_abc123/jobfile"
}
]
}