pralabhkumar commented on a change in pull request #23447: [SPARK-26462][CORE]
Use ConfigEntry for hardcoded configs for execution categories
URL: https://github.com/apache/spark/pull/23447#discussion_r246352054
##########
File path: core/src/main/scala/org/apache/spark/api/r/RRunner.scala
##########
@@ -124,7 +125,8 @@ private[spark] class RRunner[U](
partitionIndex: Int): Unit = {
val env = SparkEnv.get
val taskContext = TaskContext.get()
- val bufferSize = System.getProperty("spark.buffer.size", "65536").toInt
+ val bufferSize = System.getProperty(BUFFER_SIZE.key,
+ BUFFER_SIZE.defaultValue.get.toString).toInt
Review comment:
done
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]