[
https://issues.apache.org/jira/browse/MESOS-2635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14975803#comment-14975803
]
Dohyeong Park commented on MESOS-2635:
--------------------------------------
mesos/src/webui/master/static/frameworks.html
on the 44, 46 lines,
44 <td>{{framework.resources.cpus | number}}</td>
46 <td>{{framework.max_share * 100 | number}}%</td>
=>
44 <td>{{framework.resources.cpus | decimalFloat}}</td>
46 <td>{{framework.max_share * 100 | decimalFloat}}%</td>
In my case, I could fix this issue by that way.
> Web UI Display Bug when starting lots of tasks with small cpu value
> -------------------------------------------------------------------
>
> Key: MESOS-2635
> URL: https://issues.apache.org/jira/browse/MESOS-2635
> Project: Mesos
> Issue Type: Bug
> Components: webui
> Affects Versions: 0.22.0
> Reporter: Lukas Loesche
> Assignee: haosdent
> Priority: Minor
> Fix For: 0.25.0
>
> Attachments: Screen Shot 2015-04-17 at 18.53.54.png, fixed_after.png,
> fixed_before.png
>
>
> During Marathon scale testing we encountered a display bug where the Mesos
> Web UI would show -4.064304448547773e-11 Idle CPUs in the Resources overview.
> To reproduce, we started:
> "cmd": "python -m SimpleHTTPServer $PORT0",
> "cpus": 0.0001,
> "instances": 2000,
> "mem": 32,
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)