-
- Downloads
[SPARK-14679][UI] Fix UI DAG visualization OOM.
## What changes were proposed in this pull request? The DAG visualization can cause an OOM when generating the DOT file. This happens because clusters are not correctly deduped by a contains check because they use the default equals implementation. This adds a working equals implementation. ## How was this patch tested? This adds a test suite that checks the new equals implementation. Author: Ryan Blue <blue@apache.org> Closes #12437 from rdblue/SPARK-14679-fix-ui-oom.
Showing
- core/src/main/scala/org/apache/spark/ui/scope/RDDOperationGraph.scala 18 additions, 0 deletions...n/scala/org/apache/spark/ui/scope/RDDOperationGraph.scala
- core/src/test/scala/org/apache/spark/ui/scope/RDDOperationGraphSuite.scala 37 additions, 0 deletions...la/org/apache/spark/ui/scope/RDDOperationGraphSuite.scala
Please register or sign in to comment