Skip to content

Commit

Permalink
[SPARK-4880] remove spark.locality.wait in Analytics
Browse files Browse the repository at this point in the history
spark.locality.wait set to 100000 in examples/graphx/Analytics.scala.
Should be left to the user.

Author: Ernest <[email protected]>

Closes #3730 from Earne/SPARK-4880 and squashes the following commits:

d79ed04 [Ernest] remove spark.locality.wait in Analytics
  • Loading branch information
Earne authored and rxin committed Dec 18, 2014
1 parent 59a49db commit a7ed6f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ object Analytics extends Logging {
}
val options = mutable.Map(optionsList: _*)

val conf = new SparkConf().set("spark.locality.wait", "100000")
val conf = new SparkConf()
GraphXUtils.registerKryoClasses(conf)

val numEPart = options.remove("numEPart").map(_.toInt).getOrElse {
Expand Down

0 comments on commit a7ed6f3

Please sign in to comment.