job
The list of jobs (e.g. extract, load, etc.)
Primary Key:| Column | Data Type | Nullable | Indexed | Description |
|---|---|---|---|---|
job_id | bigint | No | Yes | Snowflake ID for the job. Generated through expression: |
job_type | job_type | No | No | The type of job. This is usually the name of a service running the job (e.g. extractor, csvloader, etc.). Generated through expression: |
task | text | No | No | The task performed by the job. Generated through expression: |
filename | text | No | No | The filename associated with the job. Generated through expression: |
start_time | timestamp with time zone | No | No | Time job started. Generated through expression: |
end_time | timestamp with time zone | No | No | Time job finished. Generated through expression: |
status | job_status_type | No | No | Status of the job. (e.g. queued, running, succeeded, failed, cancelled, skipped, etc.). Generated through expression: |
log | text | No | No | Logs from job. Generated through expression: |