Github user srowen commented on a diff in the pull request:
https://github.com/apache/spark/pull/6317#discussion_r31007611
--- Diff:
core/src/main/scala/org/apache/spark/deploy/master/ui/MasterPage.scala ---
@@ -108,12 +109,12 @@ private[ui] class MasterPage(parent: MasterWebUI)
extends WebUIPage("") {
</li>
}.getOrElse { Seq.empty }
}
- <li><strong>Workers:</strong> {state.workers.size}</li>
- <li><strong>Cores:</strong> {state.workers.map(_.cores).sum}
Total,
- {state.workers.map(_.coresUsed).sum} Used</li>
- <li><strong>Memory:</strong>
- {Utils.megabytesToString(state.workers.map(_.memory).sum)}
Total,
-
{Utils.megabytesToString(state.workers.map(_.memoryUsed).sum)} Used</li>
+ <li><strong>Alive Workers:</strong> {aliveWorkers.size}</li>
+ <li><strong>Alive Cores:</strong>
{aliveWorkers.map(_.cores).sum} Total,
+ {aliveWorkers.map(_.coresUsed).sum} Used</li>
+ <li><strong>Alive Memory:</strong>
--- End diff --
I don't think "Alive Memory" / "Alive Cores" makes sense. "Memory in use" /
"Cores in use"?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]