Skip to main content

job_exporter

Stores exporter related jobs.

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_exporter_idbigintNoYesSnowflake ID for the job.
job_exporter_configuration_idbigintNoYesForeign key to job_exporter_configuration which tracks details for spawning exporter jobs.
input_start_timetimestamp with time zoneNoNoStart of the time range processed by this run.
input_end_timetimestamp with time zoneNoNoEnd of the time range processed by this run.
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.