[jira] [Updated] (KYLIN-2753) Job duration may become negative after the job resumed from error or paused status

2017-09-01 Thread zhengdong (JIRA)

 [ 
https://issues.apache.org/jira/browse/KYLIN-2753?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

zhengdong updated KYLIN-2753:
-
Attachment: 0001-KYLIN-2753-Fix-for-the-special-case-that-jobs-not-re.patch

> Job duration may become negative after the job resumed from error or paused 
> status
> --
>
> Key: KYLIN-2753
> URL: https://issues.apache.org/jira/browse/KYLIN-2753
> Project: Kylin
>  Issue Type: Bug
>Affects Versions: v2.1.0
>Reporter: zhengdong
>Assignee: zhengdong
> Attachments: 
> 0001-KYLIN-2753-Fix-for-the-special-case-that-jobs-not-re.patch, 
> 0001-KYLIN-2753-Job-duration-may-become-negative-after-th.patch, 
> KYLIN-2753-Job-duration-may-become-negative-after-th.patch, Screen Shot 
> 2017-08-02 at 13.30.51.png, Screen Shot 2017-08-02 at 14.01.13.png
>
>
> After KYLIN-2655, we calculate the 'Interrupt time' when a job resumed from 
> error/stopped status to give more accurate job duration time. However, when 
> calculate the real duration time = 'Total time' - 'Interrupt time', we could 
> get a negative value.
> The root cause is 'Interrupt time' calculated in 
> DefaultChainedExecutable.onExecuteStart method. The 'Interrupt time' value is 
> not only added with the true 'Interrupt time' when the job scheduled after 
> resumed, but also increased when subsequent sub tasks executed.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (KYLIN-2753) Job duration may become negative after the job resumed from error or paused status

2017-09-01 Thread zhengdong (JIRA)

 [ 
https://issues.apache.org/jira/browse/KYLIN-2753?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

zhengdong updated KYLIN-2753:
-
Attachment: KYLIN-2753-Job-duration-may-become-negative-after-th.patch

> Job duration may become negative after the job resumed from error or paused 
> status
> --
>
> Key: KYLIN-2753
> URL: https://issues.apache.org/jira/browse/KYLIN-2753
> Project: Kylin
>  Issue Type: Bug
>Affects Versions: v2.1.0
>Reporter: zhengdong
>Assignee: zhengdong
> Attachments: 
> 0001-KYLIN-2753-Job-duration-may-become-negative-after-th.patch, 
> KYLIN-2753-Job-duration-may-become-negative-after-th.patch, Screen Shot 
> 2017-08-02 at 13.30.51.png, Screen Shot 2017-08-02 at 14.01.13.png
>
>
> After KYLIN-2655, we calculate the 'Interrupt time' when a job resumed from 
> error/stopped status to give more accurate job duration time. However, when 
> calculate the real duration time = 'Total time' - 'Interrupt time', we could 
> get a negative value.
> The root cause is 'Interrupt time' calculated in 
> DefaultChainedExecutable.onExecuteStart method. The 'Interrupt time' value is 
> not only added with the true 'Interrupt time' when the job scheduled after 
> resumed, but also increased when subsequent sub tasks executed.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (KYLIN-2753) Job duration may become negative after the job resumed from error or paused status

2017-08-13 Thread Billy Liu (JIRA)

 [ 
https://issues.apache.org/jira/browse/KYLIN-2753?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Billy Liu updated KYLIN-2753:
-
Fix Version/s: (was: v2.1.0)

> Job duration may become negative after the job resumed from error or paused 
> status
> --
>
> Key: KYLIN-2753
> URL: https://issues.apache.org/jira/browse/KYLIN-2753
> Project: Kylin
>  Issue Type: Bug
>Affects Versions: v2.1.0
>Reporter: zhengdong
>Assignee: zhengdong
> Attachments: 
> 0001-KYLIN-2753-Job-duration-may-become-negative-after-th.patch, Screen Shot 
> 2017-08-02 at 13.30.51.png, Screen Shot 2017-08-02 at 14.01.13.png
>
>
> After KYLIN-2655, we calculate the 'Interrupt time' when a job resumed from 
> error/stopped status to give more accurate job duration time. However, when 
> calculate the real duration time = 'Total time' - 'Interrupt time', we could 
> get a negative value.
> The root cause is 'Interrupt time' calculated in 
> DefaultChainedExecutable.onExecuteStart method. The 'Interrupt time' value is 
> not only added with the true 'Interrupt time' when the job scheduled after 
> resumed, but also increased when subsequent sub tasks executed.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (KYLIN-2753) Job duration may become negative after the job resumed from error or paused status

2017-08-02 Thread Dong Li (JIRA)

 [ 
https://issues.apache.org/jira/browse/KYLIN-2753?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dong Li updated KYLIN-2753:
---
Attachment: Screen Shot 2017-08-02 at 14.01.13.png
Screen Shot 2017-08-02 at 13.30.51.png

> Job duration may become negative after the job resumed from error or paused 
> status
> --
>
> Key: KYLIN-2753
> URL: https://issues.apache.org/jira/browse/KYLIN-2753
> Project: Kylin
>  Issue Type: Bug
>Affects Versions: v2.1.0
>Reporter: zhengdong
>Assignee: zhengdong
> Fix For: v2.1.0
>
> Attachments: 
> 0001-KYLIN-2753-Job-duration-may-become-negative-after-th.patch, Screen Shot 
> 2017-08-02 at 13.30.51.png, Screen Shot 2017-08-02 at 14.01.13.png
>
>
> After KYLIN-2655, we calculate the 'Interrupt time' when a job resumed from 
> error/stopped status to give more accurate job duration time. However, when 
> calculate the real duration time = 'Total time' - 'Interrupt time', we could 
> get a negative value.
> The root cause is 'Interrupt time' calculated in 
> DefaultChainedExecutable.onExecuteStart method. The 'Interrupt time' value is 
> not only added with the true 'Interrupt time' when the job scheduled after 
> resumed, but also increased when subsequent sub tasks executed.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (KYLIN-2753) Job duration may become negative after the job resumed from error or paused status

2017-07-24 Thread zhengdong (JIRA)

 [ 
https://issues.apache.org/jira/browse/KYLIN-2753?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

zhengdong updated KYLIN-2753:
-
Attachment: 0001-KYLIN-2753-Job-duration-may-become-negative-after-th.patch

> Job duration may become negative after the job resumed from error or paused 
> status
> --
>
> Key: KYLIN-2753
> URL: https://issues.apache.org/jira/browse/KYLIN-2753
> Project: Kylin
>  Issue Type: Bug
>Affects Versions: v2.1.0
>Reporter: zhengdong
> Attachments: 
> 0001-KYLIN-2753-Job-duration-may-become-negative-after-th.patch
>
>
> After KYLIN-2655, we calculate the 'Interrupt time' when a job resumed from 
> error/stopped status to give more accurate job duration time. However, when 
> calculate the real duration time = 'Total time' - 'Interrupt time', we could 
> get a negative value.
> The root cause is 'Interrupt time' calculated in 
> DefaultChainedExecutable.onExecuteStart method. The 'Interrupt time' value is 
> not only added with the true 'Interrupt time' when the job scheduled after 
> resumed, but also increased when subsequent sub tasks executed.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)