Fence and reconcile Dataflow runs

This commit is contained in:
2026-08-03 06:09:53 +02:00
parent e1c092ece7
commit 3fa7a29f48
13 changed files with 1314 additions and 44 deletions
+7 -1
View File
@@ -222,7 +222,7 @@ export type PipelineRun = {
pipeline_id: string;
revision: number;
run_type: string;
status: "queued" | "retrying" | "running" | "succeeded" | "failed" | "cancelled";
status: "queued" | "retrying" | "running" | "succeeded" | "failed" | "cancelled" | "outcome_unknown";
idempotency_key?: string | null;
execution_backend: "auto" | "reference" | "duckdb";
environment: "development" | "staging" | "production";
@@ -256,6 +256,12 @@ export type PipelineRun = {
finished_at?: string | null;
created_by?: string | null;
created_at: string;
recovery_operation_id?: string | null;
recovery_operation_type?: string | null;
recovery_mode?: string | null;
recovery_status?: string | null;
recovery_requires_attention: boolean;
recovery_explanation?: string | null;
replayed: boolean;
};