Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spark
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs525-sp18-g07
spark
Commits
b60839e5
Commit
b60839e5
authored
11 years ago
by
BlackNiuza
Committed by
shiyun.wxm
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
correct number of tasks in ExecutorsUI
parent
96e0fb46
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/src/main/scala/org/apache/spark/ui/exec/ExecutorsUI.scala
+10
-9
10 additions, 9 deletions
...src/main/scala/org/apache/spark/ui/exec/ExecutorsUI.scala
with
10 additions
and
9 deletions
core/src/main/scala/org/apache/spark/ui/exec/ExecutorsUI.scala
+
10
−
9
View file @
b60839e5
...
...
@@ -100,15 +100,16 @@ private[spark] class ExecutorsUI(val sc: SparkContext) {
}
def
getExecInfo
(
a
:
Int
)
:
Seq
[
String
]
=
{
val
execId
=
sc
.
getExecutorStorageStatus
(
a
).
blockManagerId
.
executorId
val
hostPort
=
sc
.
getExecutorStorageStatus
(
a
).
blockManagerId
.
hostPort
val
rddBlocks
=
sc
.
getExecutorStorageStatus
(
a
).
blocks
.
size
.
toString
val
memUsed
=
sc
.
getExecutorStorageStatus
(
a
).
memUsed
().
toString
val
maxMem
=
sc
.
getExecutorStorageStatus
(
a
).
maxMem
.
toString
val
diskUsed
=
sc
.
getExecutorStorageStatus
(
a
).
diskUsed
().
toString
val
activeTasks
=
listener
.
executorToTasksActive
.
get
(
a
.
toString
).
map
(
l
=>
l
.
size
).
getOrElse
(
0
)
val
failedTasks
=
listener
.
executorToTasksFailed
.
getOrElse
(
a
.
toString
,
0
)
val
completedTasks
=
listener
.
executorToTasksComplete
.
getOrElse
(
a
.
toString
,
0
)
val
status
=
sc
.
getExecutorStorageStatus
(
a
)
val
execId
=
status
.
blockManagerId
.
executorId
val
hostPort
=
status
.
blockManagerId
.
hostPort
val
rddBlocks
=
status
.
blocks
.
size
.
toString
val
memUsed
=
status
.
memUsed
().
toString
val
maxMem
=
status
.
maxMem
.
toString
val
diskUsed
=
status
.
diskUsed
().
toString
val
activeTasks
=
listener
.
executorToTasksActive
.
getOrElse
(
execId
,
Seq
[
Long
]()).
size
val
failedTasks
=
listener
.
executorToTasksFailed
.
getOrElse
(
execId
,
0
)
val
completedTasks
=
listener
.
executorToTasksComplete
.
getOrElse
(
execId
,
0
)
val
totalTasks
=
activeTasks
+
failedTasks
+
completedTasks
Seq
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment