Skip to content

@lancedb/lancedbDocs


@lancedb/lancedb / JobInfo

Interface: JobInfo

A row from Connection.listJobs: one server-side job.

Properties

createdAtMillis

createdAtMillis: number;

When the job was created, in milliseconds since the epoch.


jobId

jobId: string;

The job id -- what Connection.getJob and Connection.cancelJob accept.


jobType

jobType: string;

state

state: string;

Lifecycle state: "running", "finished", "failed", or "cancelled".


table

table: string;

The table the job runs against, without URI or namespace.