From 28061047e725edc86bbb619fff9de11125513d6e Mon Sep 17 00:00:00 2001 From: tfx-team Date: Tue, 9 Jul 2024 13:38:57 -0700 Subject: [PATCH] Add pipeline_lifetime field to enable alert end nodes. PiperOrigin-RevId: 650743239 --- tfx/proto/orchestration/pipeline.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tfx/proto/orchestration/pipeline.proto b/tfx/proto/orchestration/pipeline.proto index 7986a1ee904..7f116b6a06b 100644 --- a/tfx/proto/orchestration/pipeline.proto +++ b/tfx/proto/orchestration/pipeline.proto @@ -638,6 +638,11 @@ message NodeExecutionOptions { // If set then the node this NodeExecutionOptions belongs to marks the end // of some lifetime. string lifetime_start = 1; + // If True then the node this NodeExecutionOptions belongs to will execute + // when the pipeline is considered "finalized". Noted that the node will + // not have a start node and the node will always be triggered when the + // pipeline is finalized. + bool pipeline_lifetime = 2; } }