Unverified Commit 11b97adb authored by xiaoguaiguai's avatar xiaoguaiguai Committed by GitHub

add job CheckPoint History for Recovery of CheckPoint (#665)

parent db71177f
......@@ -25,6 +25,9 @@ export function parseNumStr(num: number) {
}
export function parseMilliSecondStr(second_time: number) {
if(((second_time/1000) %60) < 1){
return second_time + "毫秒";
}
return parseSecondStr(second_time/1000);
}
......
......@@ -114,3 +114,14 @@ export type TaskContainerConfigInfo = {
}
export type CheckPointsDetailInfo = {
jobID: number,
historyID: number,
id: number,
status: string,
end_to_end_duration: number,
external_path : string,
latest_ack_timestamp: number,
state_size: number,
trigger_timestamp: number,
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment