从运行上述代码的Visual VM获得:活动线程8081和守护线程8080
并输出到repl
> 线程 "async-dispatch-133" 中发生异常,线程 "async-dispatch-132" 中发生异常,线程 "async-dispatch-131" 中发生异常,线程 "async-dispatch-130" 中发生异常,线程 "async-dispatch-128" 中发生异常,线程 "async-dispatch-127" 中发生异常,线程 "async-dispatch-126" 中发生异常 java.lang.AssertionError: 断言失败:一个通道上允许的挂起接受操作不超过1024个。
(< (.size takes) impl/MAX-QUEUE-SIZE)
在 clojure.core.async.impl.channels.ManyToManyChannel.take_BANG_(channels.clj:235)
在 clojure.core.async.impl.ioc_macros$take_BANG_.invokeStatic(ioc_macros.clj:988)
在 clojure.core.async.impl.ioc_macros$take_BANG_.invoke(ioc_macros.clj:987)
在 investigate$fn__9405$fn__9414$state_machine__6606__auto____9415$fn__9417.invoke(NO_SOURCE_FILE:1)
在 investigate$fn__9405$fn__9414$state_machine__6606__auto____9415.invoke(NO_SOURCE_FILE:1)
在 clojure.core.async.impl.ioc_macros$run_state_machine.invokeStatic(ioc_macros.clj:978)
在 clojure.core.async.impl.ioc_macros$run_state_machine.invoke(ioc_macros.clj:977)
在 clojure.core.async.impl.ioc_macros$run_state_machine_wrapped.invokeStatic(ioc_macros.clj:982)
在 clojure.core.async.impl.ioc_macros$run_state_machine_wrapped.invoke(ioc_macros.clj:980)
在 investigate$fn__9405$fn__9414.invoke(NO_SOURCE_FILE:1)
在 clojure.lang.AFn.run(AFn.java:22)
在 java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
在 java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
在 clojure.core.async.impl.concurrent$counted_thread_factory$reify__479$fn__480.invoke(concurrent.clj:29)
在 clojure.lang.AFn.run(AFn.java:22)
在 java.base/java.lang.Thread.run(Thread.java:830)
... 看起来像上面的几百行...
线程 "async-dispatch-99" 中发生异常 [37.890s][warning][os,thread] 无法启动线程 - pthread_create失败(EAGAIN),对于属性:stacksize:1024k,guardsize:4k,detached。
线程 "async-dispatch-8177" 发生 java.lang.OutOfMemoryError: 无法创建本地线程:可能内存不足或已达到进程/资源限制
确实你在创建8000个线程,但你任何时候只保留8个活动线程。你堆积了大量的未满足的挂起接受操作,触发了core.async的1024个限制。
https://github.com/clojure/core.async/blob/master/src/main/clojure/clojure/core/async/impl/protocols.clj#L13
所以你的做法是创建成千上万的线程并立即杀死它们,还有更多的线程基于以下FixedThreadPool跳进来
```
(defn thread-pool-executor
([]
(thread-pool-executor nil))
([init-fn]
(let [executor-svc (Executors/newFixedThreadPool
@pool-size
(conc/counted-thread-factory "async-dispatch-%d" true
{:init-fn init-fn}))]
(reify impl/Executor
(impl/exec [this r]
(.execute executor-svc ^Runnable r))))))
```