[jira] [Updated] (MAPREDUCE-6816) Progress bars in Web UI always at 100%

2016-12-06 Thread Akira Ajisaka (JIRA)

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

Akira Ajisaka updated MAPREDUCE-6816:
-
   Resolution: Fixed
 Hadoop Flags: Reviewed
Fix Version/s: 3.0.0-alpha2
   2.8.0
   Status: Resolved  (was: Patch Available)

Committed this to trunk. Thanks [~shenyinjie] for the contribution! I really 
appreciate that.

> Progress bars in Web UI always at 100% 
> ---
>
> Key: MAPREDUCE-6816
> URL: https://issues.apache.org/jira/browse/MAPREDUCE-6816
> Project: Hadoop Map/Reduce
>  Issue Type: Bug
>  Components: webapps
>Reporter: Shen Yinjie
>Assignee: Shen Yinjie
>Priority: Blocker
> Fix For: 2.8.0, 3.0.0-alpha2
>
> Attachments: MAPREDUCE-6816.01.patch, MAPREDUCE-6816.02.patch, 
> MAPREDUCE-6816.03.patch, MAPREDUCE-6816.patch, pre.png
>
>
> YARN web UI always shows progress bars at 100% (see screenshot, progress of 
> the reduce step is roughly at 40.00%). I opened the HTML source code to check 
> (also see screenshot), and it seems the problem is that it uses "%%" ,which 
> cannot be recognized. This is due to the output of {{StringUtils.format()}} 
> contains '%', while in *Block.java use  {{join()}} add an extra '%'.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: mapreduce-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: mapreduce-issues-h...@hadoop.apache.org



[jira] [Updated] (MAPREDUCE-6816) Progress bars in Web UI always at 100%

2016-12-06 Thread Shen Yinjie (JIRA)

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

Shen Yinjie updated MAPREDUCE-6816:
---
Attachment: MAPREDUCE-6816.03.patch

fixed TaskPage.java

> Progress bars in Web UI always at 100% 
> ---
>
> Key: MAPREDUCE-6816
> URL: https://issues.apache.org/jira/browse/MAPREDUCE-6816
> Project: Hadoop Map/Reduce
>  Issue Type: Bug
>  Components: webapps
>Reporter: Shen Yinjie
>Assignee: Shen Yinjie
>Priority: Blocker
> Attachments: MAPREDUCE-6816.01.patch, MAPREDUCE-6816.02.patch, 
> MAPREDUCE-6816.03.patch, MAPREDUCE-6816.patch, pre.png
>
>
> YARN web UI always shows progress bars at 100% (see screenshot, progress of 
> the reduce step is roughly at 40.00%). I opened the HTML source code to check 
> (also see screenshot), and it seems the problem is that it uses "%%" ,which 
> cannot be recognized. This is due to the output of {{StringUtils.format()}} 
> contains '%', while in *Block.java use  {{join()}} add an extra '%'.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: mapreduce-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: mapreduce-issues-h...@hadoop.apache.org



[jira] [Updated] (MAPREDUCE-6816) Progress bars in Web UI always at 100%

2016-12-06 Thread Shen Yinjie (JIRA)

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

Shen Yinjie updated MAPREDUCE-6816:
---
Attachment: MAPREDUCE-6816.02.patch

patch tested

> Progress bars in Web UI always at 100% 
> ---
>
> Key: MAPREDUCE-6816
> URL: https://issues.apache.org/jira/browse/MAPREDUCE-6816
> Project: Hadoop Map/Reduce
>  Issue Type: Bug
>  Components: webapps
>Reporter: Shen Yinjie
>Assignee: Shen Yinjie
>Priority: Blocker
> Attachments: MAPREDUCE-6816.01.patch, MAPREDUCE-6816.02.patch, 
> MAPREDUCE-6816.patch, pre.png
>
>
> YARN web UI always shows progress bars at 100% (see screenshot, progress of 
> the reduce step is roughly at 40.00%). I opened the HTML source code to check 
> (also see screenshot), and it seems the problem is that it uses "%%" ,which 
> cannot be recognized. This is due to the output of {{StringUtils.format()}} 
> contains '%', while in *Block.java use  {{join()}} add an extra '%'.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: mapreduce-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: mapreduce-issues-h...@hadoop.apache.org



[jira] [Updated] (MAPREDUCE-6816) Progress bars in Web UI always at 100%

2016-12-05 Thread Akira Ajisaka (JIRA)

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

Akira Ajisaka updated MAPREDUCE-6816:
-
Affects Version/s: (was: 3.0.0-alpha2)
 Target Version/s: 2.8.0, 3.0.0-alpha2
 Priority: Blocker  (was: Major)

Thanks [~shenyinjie] for reporting this! This issue was broken by YARN-2123 and 
it is a regression from Hadoop 2.7. Raising the priority to blocker.

> Progress bars in Web UI always at 100% 
> ---
>
> Key: MAPREDUCE-6816
> URL: https://issues.apache.org/jira/browse/MAPREDUCE-6816
> Project: Hadoop Map/Reduce
>  Issue Type: Bug
>  Components: webapps
>Reporter: Shen Yinjie
>Assignee: Shen Yinjie
>Priority: Blocker
> Attachments: MAPREDUCE-6816.01.patch, MAPREDUCE-6816.patch, pre.png
>
>
> YARN web UI always shows progress bars at 100% (see screenshot, progress of 
> the reduce step is roughly at 40.00%). I opened the HTML source code to check 
> (also see screenshot), and it seems the problem is that it uses "%%" ,which 
> cannot be recognized. This is due to the output of {{StringUtils.format()}} 
> contains '%', while in *Block.java use  {{join()}} add an extra '%'.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: mapreduce-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: mapreduce-issues-h...@hadoop.apache.org



[jira] [Updated] (MAPREDUCE-6816) Progress bars in Web UI always at 100%

2016-12-05 Thread Shen Yinjie (JIRA)

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

Shen Yinjie updated MAPREDUCE-6816:
---
Description: YARN web UI always shows progress bars at 100% (see 
screenshot, progress of the reduce step is roughly at 40.00%). I opened the 
HTML source code to check (also see screenshot), and it seems the problem is 
that it uses "%%" ,which cannot be recognized. This is due to the output of 
{{StringUtils.format()}} contains '%', while in *Block.java use  {{join()}} add 
an extra '%'.  (was: YARN web UI always shows progress bars at 100% (see 
screenshot, progress of the reduce step is roughly at 40.00%). I opened the 
HTML source code to check (also see screenshot), and it seems the problem is 
that it uses "%%" ,which cannot be recognized. This is due to the output 
of{{StringUtils.format()}} contains '%', while in *Block.java use {{join()}}add 
an extra '%'.)

> Progress bars in Web UI always at 100% 
> ---
>
> Key: MAPREDUCE-6816
> URL: https://issues.apache.org/jira/browse/MAPREDUCE-6816
> Project: Hadoop Map/Reduce
>  Issue Type: Bug
>  Components: webapps
>Affects Versions: 3.0.0-alpha2
>Reporter: Shen Yinjie
>Assignee: Shen Yinjie
> Attachments: MAPREDUCE-6816.01.patch, MAPREDUCE-6816.patch, pre.png
>
>
> YARN web UI always shows progress bars at 100% (see screenshot, progress of 
> the reduce step is roughly at 40.00%). I opened the HTML source code to check 
> (also see screenshot), and it seems the problem is that it uses "%%" ,which 
> cannot be recognized. This is due to the output of {{StringUtils.format()}} 
> contains '%', while in *Block.java use  {{join()}} add an extra '%'.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: mapreduce-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: mapreduce-issues-h...@hadoop.apache.org



[jira] [Updated] (MAPREDUCE-6816) Progress bars in Web UI always at 100%

2016-12-05 Thread Shen Yinjie (JIRA)

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

Shen Yinjie updated MAPREDUCE-6816:
---
Description: YARN web UI always shows progress bars at 100% (see 
screenshot, progress of the reduce step is roughly at 40.00%). I opened the 
HTML source code to check (also see screenshot), and it seems the problem is 
that it uses "%%" ,which cannot be recognized. This is due to the output 
of{{StringUtils.format()}} contains '%', while in *Block.java use {{join()}}add 
an extra '%'.  (was: YARN web UI always shows progress bars at 100% (see 
screenshot, progress of the reduce step is roughly at 40.00%). I opened the 
HTML source code to check (also see screenshot), and it seems the problem is 
that it uses "%%" ,which cannot be recognized. This is due to the output 
of{code}StringUtils.format(){code} contains '%', while in *Block.java use 
{code}join(){code}add an extra '%'.)

> Progress bars in Web UI always at 100% 
> ---
>
> Key: MAPREDUCE-6816
> URL: https://issues.apache.org/jira/browse/MAPREDUCE-6816
> Project: Hadoop Map/Reduce
>  Issue Type: Bug
>  Components: webapps
>Affects Versions: 3.0.0-alpha2
>Reporter: Shen Yinjie
>Assignee: Shen Yinjie
> Attachments: MAPREDUCE-6816.01.patch, MAPREDUCE-6816.patch, pre.png
>
>
> YARN web UI always shows progress bars at 100% (see screenshot, progress of 
> the reduce step is roughly at 40.00%). I opened the HTML source code to check 
> (also see screenshot), and it seems the problem is that it uses "%%" ,which 
> cannot be recognized. This is due to the output of{{StringUtils.format()}} 
> contains '%', while in *Block.java use {{join()}}add an extra '%'.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: mapreduce-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: mapreduce-issues-h...@hadoop.apache.org



[jira] [Updated] (MAPREDUCE-6816) Progress bars in Web UI always at 100%

2016-12-04 Thread Shen Yinjie (JIRA)

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

Shen Yinjie updated MAPREDUCE-6816:
---
Description: YARN web UI always shows progress bars at 100% (see 
screenshot, progress of the reduce step is roughly at 40.00%). I opened the 
HTML source code to check (also see screenshot), and it seems the problem is 
that it uses "%%" ,which cannot be recognized. This is due to the output 
of{code}StringUtils.format(){code} contains '%', while in *Block.java use 
{code}join(){code}add an extra '%'.  (was: YARN web UI always shows progress 
bars at 100% (see screenshot, progress of the reduce step is roughly at 
40.00%). I opened the HTML source code to check (also see screenshot), and it 
seems the problem is that it uses "%%" ,which cannot be recognized. This is due 
to the output of{code}StringUtils.format(){code} contains '%', while in 
*Block.java use {code}join{code}add an extra '%'.)

> Progress bars in Web UI always at 100% 
> ---
>
> Key: MAPREDUCE-6816
> URL: https://issues.apache.org/jira/browse/MAPREDUCE-6816
> Project: Hadoop Map/Reduce
>  Issue Type: Bug
>  Components: webapps
>Affects Versions: 3.0.0-alpha2
>Reporter: Shen Yinjie
>Assignee: Shen Yinjie
> Attachments: MAPREDUCE-6816.01.patch, MAPREDUCE-6816.patch, pre.png
>
>
> YARN web UI always shows progress bars at 100% (see screenshot, progress of 
> the reduce step is roughly at 40.00%). I opened the HTML source code to check 
> (also see screenshot), and it seems the problem is that it uses "%%" ,which 
> cannot be recognized. This is due to the output 
> of{code}StringUtils.format(){code} contains '%', while in *Block.java use 
> {code}join(){code}add an extra '%'.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: mapreduce-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: mapreduce-issues-h...@hadoop.apache.org



[jira] [Updated] (MAPREDUCE-6816) Progress bars in Web UI always at 100%

2016-12-02 Thread Shen Yinjie (JIRA)

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

Shen Yinjie updated MAPREDUCE-6816:
---
Attachment: MAPREDUCE-6816.01.patch

> Progress bars in Web UI always at 100% 
> ---
>
> Key: MAPREDUCE-6816
> URL: https://issues.apache.org/jira/browse/MAPREDUCE-6816
> Project: Hadoop Map/Reduce
>  Issue Type: Bug
>  Components: webapps
>Affects Versions: 3.0.0-alpha2
>Reporter: Shen Yinjie
>Assignee: Shen Yinjie
> Attachments: MAPREDUCE-6816.01.patch, MAPREDUCE-6816.patch, pre.png
>
>
> YARN web UI always shows progress bars at 100% (see screenshot, progress of 
> the reduce step is roughly at 40.00%). I opened the HTML source code to check 
> (also see screenshot), and it seems the problem is that it uses "%%" ,which 
> cannot be recognized. This is due to the output 
> of{code}StringUtils.format(){code} contains '%', while in *Block.java use 
> {code}join{code}add an extra '%'.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: mapreduce-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: mapreduce-issues-h...@hadoop.apache.org



[jira] [Updated] (MAPREDUCE-6816) Progress bars in Web UI always at 100%

2016-12-02 Thread Shen Yinjie (JIRA)

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

Shen Yinjie updated MAPREDUCE-6816:
---
Attachment: pre.png

> Progress bars in Web UI always at 100% 
> ---
>
> Key: MAPREDUCE-6816
> URL: https://issues.apache.org/jira/browse/MAPREDUCE-6816
> Project: Hadoop Map/Reduce
>  Issue Type: Bug
>  Components: webapps
>Affects Versions: 3.0.0-alpha2
>Reporter: Shen Yinjie
>Assignee: Shen Yinjie
> Attachments: MAPREDUCE-6816.patch, pre.png
>
>
> YARN web UI always shows progress bars at 100% (see screenshot, progress of 
> the reduce step is roughly at 40.00%). I opened the HTML source code to check 
> (also see screenshot), and it seems the problem is that it uses "%%" ,which 
> cannot be recognized. This is due to the output 
> of{code}StringUtils.format(){code} contains '%', while in *Block.java use 
> {code}join{code}add an extra '%'.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: mapreduce-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: mapreduce-issues-h...@hadoop.apache.org



[jira] [Updated] (MAPREDUCE-6816) Progress bars in Web UI always at 100%

2016-12-02 Thread Shen Yinjie (JIRA)

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

Shen Yinjie updated MAPREDUCE-6816:
---
Attachment: (was: pre.png)

> Progress bars in Web UI always at 100% 
> ---
>
> Key: MAPREDUCE-6816
> URL: https://issues.apache.org/jira/browse/MAPREDUCE-6816
> Project: Hadoop Map/Reduce
>  Issue Type: Bug
>  Components: webapps
>Affects Versions: 3.0.0-alpha2
>Reporter: Shen Yinjie
>Assignee: Shen Yinjie
> Attachments: MAPREDUCE-6816.patch
>
>
> YARN web UI always shows progress bars at 100% (see screenshot, progress of 
> the reduce step is roughly at 40.00%). I opened the HTML source code to check 
> (also see screenshot), and it seems the problem is that it uses "%%" ,which 
> cannot be recognized. This is due to the output 
> of{code}StringUtils.format(){code} contains '%', while in *Block.java use 
> {code}join{code}add an extra '%'.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: mapreduce-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: mapreduce-issues-h...@hadoop.apache.org



[jira] [Updated] (MAPREDUCE-6816) Progress bars in Web UI always at 100%

2016-12-02 Thread Shen Yinjie (JIRA)

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

Shen Yinjie updated MAPREDUCE-6816:
---
Status: Patch Available  (was: Open)

> Progress bars in Web UI always at 100% 
> ---
>
> Key: MAPREDUCE-6816
> URL: https://issues.apache.org/jira/browse/MAPREDUCE-6816
> Project: Hadoop Map/Reduce
>  Issue Type: Bug
>  Components: webapps
>Affects Versions: 3.0.0-alpha2
>Reporter: Shen Yinjie
>Assignee: Shen Yinjie
> Attachments: MAPREDUCE-6816.patch, pre.png
>
>
> YARN web UI always shows progress bars at 100% (see screenshot, progress of 
> the reduce step is roughly at 40.00%). I opened the HTML source code to check 
> (also see screenshot), and it seems the problem is that it uses "%%" ,which 
> cannot be recognized. This is due to the output 
> of{code}StringUtils.format(){code} contains '%', while in *Block.java use 
> {code}join{code}add an extra '%'.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: mapreduce-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: mapreduce-issues-h...@hadoop.apache.org



[jira] [Updated] (MAPREDUCE-6816) Progress bars in Web UI always at 100%

2016-12-02 Thread Shen Yinjie (JIRA)

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

Shen Yinjie updated MAPREDUCE-6816:
---
Attachment: MAPREDUCE-6816.patch

fix for review

> Progress bars in Web UI always at 100% 
> ---
>
> Key: MAPREDUCE-6816
> URL: https://issues.apache.org/jira/browse/MAPREDUCE-6816
> Project: Hadoop Map/Reduce
>  Issue Type: Bug
>  Components: webapps
>Affects Versions: 3.0.0-alpha2
>Reporter: Shen Yinjie
>Assignee: Shen Yinjie
> Attachments: MAPREDUCE-6816.patch, pre.png
>
>
> YARN web UI always shows progress bars at 100% (see screenshot, progress of 
> the reduce step is roughly at 40.00%). I opened the HTML source code to check 
> (also see screenshot), and it seems the problem is that it uses "%%" ,which 
> cannot be recognized. This is due to the output 
> of{code}StringUtils.format(){code} contains '%', while in *Block.java use 
> {code}join{code}add an extra '%'.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: mapreduce-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: mapreduce-issues-h...@hadoop.apache.org



[jira] [Updated] (MAPREDUCE-6816) Progress bars in Web UI always at 100%

2016-12-02 Thread Shen Yinjie (JIRA)

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

Shen Yinjie updated MAPREDUCE-6816:
---
Attachment: pre.png

> Progress bars in Web UI always at 100% 
> ---
>
> Key: MAPREDUCE-6816
> URL: https://issues.apache.org/jira/browse/MAPREDUCE-6816
> Project: Hadoop Map/Reduce
>  Issue Type: Bug
>  Components: webapps
>Affects Versions: 3.0.0-alpha2
>Reporter: Shen Yinjie
>Assignee: Shen Yinjie
> Attachments: pre.png
>
>
> YARN web UI always shows progress bars at 100% (see screenshot, progress of 
> the reduce step is roughly at 40.00%). I opened the HTML source code to check 
> (also see screenshot), and it seems the problem is that it uses "%%" ,which 
> cannot be recognized. This is due to the output 
> of{code}StringUtils.format(){code} contains '%', while in *Block.java use 
> {code}join{code}add an extra '%'.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: mapreduce-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: mapreduce-issues-h...@hadoop.apache.org