You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ElasticBlockingQueue will drop messages when no thread is polling the
queue. These changes replace ElasticBlockingQueue with
java.util.concurrent.LinkedBlockingQueue.
Copy file name to clipboardexpand all lines: src/main/scala/scalang/util/ThreadPoolFactory.scala
+5-6
Original file line number
Diff line number
Diff line change
@@ -58,10 +58,10 @@ class DefaultThreadPoolFactory extends ThreadPoolFactory {
58
58
lazy val workerPool = new OrderedMemoryAwareThreadPoolExecutor(max_threads, 524288000, 524288000, 1000, TimeUnit.SECONDS, new NamedThreadFactory("worker"))
59
59
lazy val actorPool = new MemoryAwareThreadPoolExecutor(max_threads, 100, 100, 1000, TimeUnit.SECONDS, StupidObjectSizeEstimator, new NamedThreadFactory("actor"))
0 commit comments