-
Enhancement
-
Resolution: Done
-
Major
-
None
-
None
The blocking executor today uses a simple ThreadPoolExecutor. Unfortunately, this means that we will eventually start all configured threads (since core = max and we require a queue). Setting core size to less than max is not desirable as well as it will enqueue additional tasks rather than spawn a thread.
The EnhancedQueueExecutor does exactly what we want and also has some additional features. We should utilize this which will keep our blocking thread pool size down during times of less activity.
- causes
-
WFLY-13996 Module org.infinispan is missing the org.jboss.threads dependency
- Closed
-
WFLY-13997 [21.x] Module org.infinispan is missing the org.jboss.threads dependency
- Closed
- relates to
-
ISPN-10309 Convert Remaining Parts to Non Blocking & Reduce Thread Pools
- To Do