On 2/5/07 11:18 AM, "Yonik Seeley" <[EMAIL PROTECTED]> wrote: > > Yes, I think that's it. > SolrCore.close() shuts down the Executor. > From the trace, you can see SolrCore closing, then an attempt to open > up another searcher after that. > > The close of the update handler should probably shut down it's executor too.
That is one cause, according to the docs: New tasks submitted in method execute(java.lang.Runnable) will be rejected when the Executor has been shut down, and also when the Executor uses finite bounds for both maximum threads and work queue capacity, and is saturated. http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/ThreadPoolExecu tor.html wunder