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
5ed5b730
Commit
5ed5b730
authored
11 years ago
by
Karen Feng
Browse files
Options
Downloads
Patches
Plain Diff
Sorts first column of env tables
parent
95025afd
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/spark/ui/env/EnvironmentUI.scala
+4
-4
4 additions, 4 deletions
core/src/main/scala/spark/ui/env/EnvironmentUI.scala
with
4 additions
and
4 deletions
core/src/main/scala/spark/ui/env/EnvironmentUI.scala
+
4
−
4
View file @
5ed5b730
...
...
@@ -46,7 +46,7 @@ private[spark] class EnvironmentUI(sc: SparkContext) {
(
"Scala Home"
,
Properties
.
scalaHome
)
)
def
jvmRow
(
kv
:
(
String
,
String
))
=
<
tr
><
td
>{
kv
.
_1
}</
td
><
td
>{
kv
.
_2
}</
td
></
tr
>
def
jvmTable
=
UIUtils
.
listingTable
(
Seq
(
"Name"
,
"Value"
),
jvmRow
,
jvmInformation
)
def
jvmTable
=
UIUtils
.
listingTable
(
Seq
(
"Name"
,
"Value"
),
jvmRow
,
jvmInformation
.
sorted
)
val
properties
=
System
.
getProperties
.
iterator
.
toSeq
val
classPathProperty
=
properties
...
...
@@ -58,8 +58,8 @@ private[spark] class EnvironmentUI(sc: SparkContext) {
val
propertyHeaders
=
Seq
(
"Name"
,
"Value"
)
def
propertyRow
(
kv
:
(
String
,
String
))
=
<
tr
><
td
>{
kv
.
_1
}</
td
><
td
>{
kv
.
_2
}</
td
></
tr
>
val
sparkPropertyTable
=
UIUtils
.
listingTable
(
propertyHeaders
,
propertyRow
,
sparkProperties
)
val
otherPropertyTable
=
UIUtils
.
listingTable
(
propertyHeaders
,
propertyRow
,
otherProperties
)
val
sparkPropertyTable
=
UIUtils
.
listingTable
(
propertyHeaders
,
propertyRow
,
sparkProperties
.
sorted
)
val
otherPropertyTable
=
UIUtils
.
listingTable
(
propertyHeaders
,
propertyRow
,
otherProperties
.
sorted
)
val
classPathEntries
=
classPathProperty
.
_2
.
split
(
System
.
getProperty
(
"path.separator"
,
":"
))
...
...
@@ -71,7 +71,7 @@ private[spark] class EnvironmentUI(sc: SparkContext) {
val
classPathHeaders
=
Seq
(
"Resource"
,
"Source"
)
def
classPathRow
(
data
:
(
String
,
String
))
=
<
tr
><
td
>{
data
.
_1
}</
td
><
td
>{
data
.
_2
}</
td
></
tr
>
val
classPathTable
=
UIUtils
.
listingTable
(
classPathHeaders
,
classPathRow
,
classPath
)
val
classPathTable
=
UIUtils
.
listingTable
(
classPathHeaders
,
classPathRow
,
classPath
.
sorted
)
val
content
=
<
span
>
...
...
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