Tomasz Nurkiewicz opened SPR-8767 and commented
Spring should provide a way (possibly a BeanFactory with a different ConfigurableListableBeanFactory#preInstantiateSingletons implementation) to initialize singleton non-lazy beans on startup in parallel using a thread pool. This could significantly reduce startup (and maybe shutdown) time by creating and initializing independent beans concurrently.
The algorithm is pretty simple in principle. Whereas the normal bean factory creates beans in single thread in rather random order, this implementation should:
- Find all bean definitions that don't have any unresolved dependencies.
- Schedule creation of each bean found in 1. in a separate concurrent task to allow parallel creation
- When any of the tasks scheduled in 2. is completed go to 1.
The algorithm stops when all beans are created.
Implementation notes:
- circular dependencies might require extra care
- bean factory should create a thread pool with configurable number of threads and shut it down after all beans are created
Affects: 3.1 RC1
Reference URL: http://forum.springsource.org/showthread.php?105896-Initialize-spring-beans-in-parallel-at-startup
Issue Links:
80 votes, 77 watchers
Tomasz Nurkiewicz opened SPR-8767 and commented
Spring should provide a way (possibly a
BeanFactorywith a differentConfigurableListableBeanFactory#preInstantiateSingletonsimplementation) to initialize singleton non-lazy beans on startup in parallel using a thread pool. This could significantly reduce startup (and maybe shutdown) time by creating and initializing independent beans concurrently.The algorithm is pretty simple in principle. Whereas the normal bean factory creates beans in single thread in rather random order, this implementation should:
The algorithm stops when all beans are created.
Implementation notes:
Affects: 3.1 RC1
Reference URL: http://forum.springsource.org/showthread.php?105896-Initialize-spring-beans-in-parallel-at-startup
Issue Links:
@SpringBeanannotation for injection80 votes, 77 watchers