You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Patrick Wendell (JIRA)" <ji...@apache.org> on 2014/08/02 21:16:11 UTC

[jira] [Resolved] (SPARK-2316) StorageStatusListener should avoid O(blocks) operations

     [ https://issues.apache.org/jira/browse/SPARK-2316?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Patrick Wendell resolved SPARK-2316.
------------------------------------

    Resolution: Fixed

This was fixed via:
https://github.com/apache/spark/pull/1679

> StorageStatusListener should avoid O(blocks) operations
> -------------------------------------------------------
>
>                 Key: SPARK-2316
>                 URL: https://issues.apache.org/jira/browse/SPARK-2316
>             Project: Spark
>          Issue Type: Bug
>          Components: Spark Core, Web UI
>    Affects Versions: 1.0.0
>            Reporter: Patrick Wendell
>            Assignee: Andrew Or
>            Priority: Critical
>             Fix For: 1.1.0
>
>
> In the case where jobs are frequently causing dropped blocks the storage status listener can bottleneck. This is slow for a few reasons, one being that we use Scala collection operations, the other being that we operations that are O(number of blocks). I think using a few indices here could make this much faster.
> {code}
>  at java.lang.Integer.valueOf(Integer.java:642)
>         at scala.runtime.BoxesRunTime.boxToInteger(BoxesRunTime.java:70)
>         at org.apache.spark.storage.StorageUtils$$anonfun$9.apply(StorageUtils.scala:82)
>         at scala.collection.TraversableLike$$anonfun$groupBy$1.apply(TraversableLike.scala:328)
>         at scala.collection.TraversableLike$$anonfun$groupBy$1.apply(TraversableLike.scala:327)
>         at scala.collection.immutable.HashMap$HashMap1.foreach(HashMap.scala:224)
>         at scala.collection.immutable.HashMap$HashTrieMap.foreach(HashMap.scala:403)
>         at scala.collection.immutable.HashMap$HashTrieMap.foreach(HashMap.scala:403)
>         at scala.collection.immutable.HashMap$HashTrieMap.foreach(HashMap.scala:403)
>         at scala.collection.TraversableLike$class.groupBy(TraversableLike.scala:327)
>         at scala.collection.AbstractTraversable.groupBy(Traversable.scala:105)
>         at org.apache.spark.storage.StorageUtils$.rddInfoFromStorageStatus(StorageUtils.scala:82)
>         at org.apache.spark.ui.storage.StorageListener.updateRDDInfo(StorageTab.scala:56)
>         at org.apache.spark.ui.storage.StorageListener.onTaskEnd(StorageTab.scala:67)
>         - locked <0x00000000a27ebe30> (a org.apache.spark.ui.storage.StorageListener)
> {code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org