-
Notifications
You must be signed in to change notification settings - Fork 79
DATA-3916 Add protos for pipeline tracking #671
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
PipelineExecutionStatus status = 4; | ||
|
||
// The interval the pipeline was run on. | ||
PipelineDataInterval interval = 5; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we call this data_interval
? If we don't want to do data_start_time
/data_end_time
?
google.protobuf.Timestamp started = 2; | ||
|
||
// The time the execution was ended. | ||
google.protobuf.Timestamp ended = 3; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can these be start_time
/end_time
?
Co-authored-by: Katie Peters <[email protected]>
// The status of the run. | ||
PipelineRunStatus status = 6; | ||
|
||
// The reason the run failed, if it did. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I probably wouldn't mentioned failure since we wanted it to be more flexible. "An optional message related to the run status"? Maybe?
No description provided.