Skip to content

Commit

Permalink
increase thread size for Jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
brkyvz committed Nov 12, 2015
1 parent dbb31e3 commit a31822c
Showing 1 changed file with 1 addition and 1 deletion.
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, 8)
private val threadpool = ThreadUtils.newDaemonCachedThreadPool(threadpoolName, 64)
private val executionContext = ExecutionContext.fromExecutorService(threadpool)
override protected val logName = s"WriteAheadLogManager $callerNameTag"

Expand Down

0 comments on commit a31822c

Please sign in to comment.