Skip to content

Commit

Permalink
Fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
shivaram committed Jun 6, 2015
1 parent 1090b58 commit 68bc29e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ class DAGScheduler(
taskScheduler.setDAGScheduler(this)

// Flag to control if reduce tasks are assigned preferred locations
private val shuffleLocalityEnabled = sc.getConf.getBoolean("spark.shuffle.reduceLocality.enabled", true)
private val shuffleLocalityEnabled =
sc.getConf.getBoolean("spark.shuffle.reduceLocality.enabled", true)
// Number of map, reduce tasks above which we do not assign preferred locations
// based on map output sizes. We limit the size of jobs for which assign preferred locations
// as sorting the locations by size becomes expensive.
Expand Down

0 comments on commit 68bc29e

Please sign in to comment.