Github user srowen commented on a diff in the pull request:
https://github.com/apache/spark/pull/6893#discussion_r32814497
--- Diff:
core/src/main/scala/org/apache/spark/ui/scope/RDDOperationGraph.scala ---
@@ -164,12 +164,20 @@ private[ui] object RDDOperationGraph extends Logging {
*
* For the complete DOT specification, see
http://www.graphviz.org/Documentation/dotguide.pdf.
*/
- def makeDotFile(graph: RDDOperationGraph): String = {
+ def makeDotFile(graph: RDDOperationGraph, stageId: String): String = {
val dotFile = new StringBuilder
dotFile.append("digraph G {\n")
- dotFile.append(makeDotSubgraph(graph.rootCluster, indent = " "))
- graph.edges.foreach { edge => dotFile.append(s"""
${edge.fromId}->${edge.toId};\n""") }
- dotFile.append("}")
+ try {
+ dotFile.append(makeDotSubgraph(graph.rootCluster, indent = " "))
+ graph.edges.foreach { edge => dotFile.append(s"""
${edge.fromId}->${edge.toId};\n""") }
+ dotFile.append("}")
+ } catch {
+ case t: Throwable =>
--- End diff --
I don't think it's valid to recover from out-of-memory this way. This
should be fixed by limiting the size another way to begin with.
---
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]