Skip to main content

job_http

Tracks the runs of jobs that send requests to an http endpoint.

Primary Key:Checks:
  • job_etl_status_check - ((status = ANY (ARRAY['succeeded'::claims.job_status_type, 'failed'::claims.job_status_type, 'cancelled'::claims.job_status_type, 'skipped'::claims.job_status_type])) = (job_end IS NOT NULL))
Foreign Keys:Indexes:
ColumnData TypeNullableIndexedDescription
job_http_idbigintNoYesSnowflake ID for job_http primary key.
job_http_configuration_idbigintNoYesForeign key to job_http_configuration which tracks details for spawning http jobs.
job_starttimestamp with time zoneNoNoTime this attempt started.
job_endtimestamp with time zoneYesNoTime this attempt finished. NULL while the attempt is still in progress.
statusjob_status_typeNoNoStatus of this attempt (e.g. queued, running, succeeded, failed, cancelled, skipped).
job_metadatajsonbNoNoAdditional metadata describing what the attempt did (e.g. archive_filename, extractor_input_version_id, and anything else useful for understanding what was done and how).
logtextNoNoLogs captured from this attempt.