Skip to content
Snippets Groups Projects
Commit 107a5ca8 authored by root's avatar root
Browse files

Make default number of parallel fetches slightly smaller since it doesn't seem...

Make default number of parallel fetches slightly smaller since it doesn't seem to hurt performance much and it will cause slightly less GC.
parent e41cab04
No related branches found
No related tags found
No related merge requests found
......@@ -631,7 +631,7 @@ class BlockManager(val master: BlockManagerMaster, val serializer: Serializer, m
object BlockManager {
def getNumParallelFetchesFromSystemProperties(): Int = {
System.getProperty("spark.blockManager.parallelFetches", "8").toInt
System.getProperty("spark.blockManager.parallelFetches", "4").toInt
}
def getMaxMemoryFromSystemProperties(): Long = {
......
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