EXECUTION RECORDS

Durable workload identity and orchestration state.

Execution Jobs identify individual workloads. Workflow Runs coordinate how those workloads move through execution. They are related records with different responsibilities.

EXECUTION JOB

The Job is the durable record of one workload.

Identity

A Job reference distinguishes one workload from every other workload.

State

The Job exposes its current lifecycle status.

Relationships

The Job can reference its Workflow Run and assigned node.

Outcome

Terminal state connects the Job with a result or failure.

WORKFLOW RUN

The Workflow Run describes orchestration around the Job.

Workflow Runs coordinate lifecycle progression, routing context, assignment progression, failure handling, and retry behavior without replacing the identity of the original Job.

01Execution Job
02Workflow Run
03Routing
04Assignment
05Execution
06Outcome
INSPECTION

Use the two records together.

01

Start with Job status

Identify the workload's current state.

02

Read Workflow Run context

Understand how execution is being coordinated.

03

Check assignment and timestamps

Determine whether work has reached execution infrastructure.

04

Inspect logs and telemetry

Investigate operational behavior.

05

Read the terminal outcome

Consume the result or handle failure explicitly.