Finding spark pipeline start time from spline lineage #890
Replies: 1 comment
-
This question is somewhat slippery. It depends on the meaning of the term "start time". If your pipelines aren't complex and not using caching then you can calculate the start time by simply subtracting the duration from the timestamp. val startTimestamp = timestamp - durationNs * 1000000` // the duration is captured in nanoseconds while timestamp is in millis |
Beta Was this translation helpful? Give feedback.
-
Im exploring spline to determine how much time it took for spark to execute a pipeline - Duration of the execution (from initialising spark context till writing the result). I could see
"timestamp":1611397050192
in the Spline lineage file which is actually write time. Is there any option to get Start Time of the pipeline from Spline Lineage Log?
Beta Was this translation helpful? Give feedback.
All reactions