forked from apache/spark
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into useIsolatedClient
Conflicts: sql/hive/src/main/scala/org/apache/spark/sql/hive/test/TestHive.scala
- Loading branch information
Showing
87 changed files
with
1,913 additions
and
1,062 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 8 additions & 6 deletions
14
core/src/main/resources/org/apache/spark/ui/static/dagre-d3.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
83 changes: 83 additions & 0 deletions
83
core/src/main/resources/org/apache/spark/ui/static/spark-dag-viz.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#dag-viz-graph svg path { | ||
stroke: #444444; | ||
stroke-width: 1.5px; | ||
} | ||
|
||
#dag-viz-graph svg g.cluster rect { | ||
stroke-width: 4px; | ||
stroke-opacity: 0.5; | ||
} | ||
|
||
#dag-viz-graph svg g.node circle, | ||
#dag-viz-graph svg g.node rect { | ||
fill: #444444; | ||
} | ||
|
||
#dag-viz-graph svg g.node.cached circle, | ||
#dag-viz-graph svg g.node.cached rect { | ||
fill: #FF0000; | ||
} | ||
|
||
/* Job page specific styles */ | ||
|
||
#dag-viz-graph svg.job marker#marker-arrow path { | ||
fill: #444444; | ||
stroke-width: 0px; | ||
} | ||
|
||
#dag-viz-graph svg.job g.cluster rect { | ||
fill: #FFFFFF; | ||
stroke: #AADFFF; | ||
} | ||
|
||
#dag-viz-graph svg.job g.cluster[id*="stage"] rect { | ||
stroke: #FFDDEE; | ||
stroke-width: 6px; | ||
} | ||
|
||
#dag-viz-graph svg.job g#cross-stage-edges path { | ||
fill: none; | ||
} | ||
|
||
#dag-viz-graph svg.job g.cluster text { | ||
fill: #AAAAAA; | ||
} | ||
|
||
/* Stage page specific styles */ | ||
|
||
#dag-viz-graph svg.stage g.cluster rect { | ||
fill: #F0F8FF; | ||
stroke: #AADFFF; | ||
} | ||
|
||
#dag-viz-graph svg.stage g.cluster[id*="stage"] rect { | ||
fill: #FFFFFF; | ||
stroke: #FFDDEE; | ||
stroke-width: 6px; | ||
} | ||
|
||
#dag-viz-graph svg.stage g.node g.label text tspan { | ||
fill: #FFFFFF; | ||
} | ||
|
||
#dag-viz-graph svg.stage g.cluster text { | ||
fill: #444444; | ||
font-weight: bold; | ||
} |
Oops, something went wrong.