Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
reduce max thread limit
  • Loading branch information
brkyvz committed Nov 12, 2015
commit 79e9b03e55382d64607ee39ac1a66a102574409a
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ private[streaming] class FileBasedWriteAheadLog(
private val callerNameTag = getCallerName.map(c => s" for $c").getOrElse("")

private val threadpoolName = s"WriteAheadLogManager $callerNameTag"
private val threadpool = ThreadUtils.newDaemonCachedThreadPool(threadpoolName, 64)
private val threadpool = ThreadUtils.newDaemonCachedThreadPool(threadpoolName, 20)
private val executionContext = ExecutionContext.fromExecutorService(threadpool)
override protected val logName = s"WriteAheadLogManager $callerNameTag"

Expand Down