Skip to content
Snippets Groups Projects
Commit 73714da5 authored by Mosharaf Chowdhury's avatar Mosharaf Chowdhury
Browse files

Made LocalFileShuffle to be the default.

parent bb3e7fbf
No related branches found
No related tags found
No related merge requests found
......@@ -359,7 +359,7 @@ extends RDD[Pair[T, U]](sc) {
: RDD[(K, C)] =
{
val shufClass = Class.forName(System.getProperty(
"spark.shuffle.class", "spark.DfsShuffle"))
"spark.shuffle.class", "spark.LocalFileShuffle"))
val shuf = shufClass.newInstance().asInstanceOf[Shuffle[K, V, C]]
shuf.compute(self, numSplits, createCombiner, mergeValue, mergeCombiners)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment