Skip to content

Commit

Permalink
Fixed spark.shuffle.io.receiveBuffer setting.
Browse files Browse the repository at this point in the history
  • Loading branch information
rxin authored and aarondav committed Oct 10, 2014
1 parent 5d98ce3 commit f7e7568
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class NettyConfig(conf: SparkConf) {
* buffer size should be ~ 1.25MB
*/
private[netty] val receiveBuf: Option[Int] =
conf.getOption("spark.shuffle.io.sendBuffer").map(_.toInt)
conf.getOption("spark.shuffle.io.receiveBuffer").map(_.toInt)

/** Send buffer size (SO_SNDBUF). */
private[netty] val sendBuf: Option[Int] =
Expand Down

0 comments on commit f7e7568

Please sign in to comment.