Thread Model
Description#
- This article gives an introduction to thread models in ShenYu and usage in various scenarios.
IO And Work Thread#
spring-webfluxis one of dependencies of ShenYu, and it uses Netty thread model in lower layer.
Business Thread#
- Use scheduling thread to execute by default.
- A fixed thread pool manages business threads, the number of threads is count in this formula: cpu * 2 + 1.
Type Switching#
reactor.core.scheduler.Schedulers.-Dshenyu.scheduler.type=fixedis a default config. If set to other value, a flexible thread pool will take place it.Schedulers.elastic().-Dshenyu.work.threads = xxis for configuring number of threads, the default value calculates in following formulacpu * 2 + 1with a minimum of 16 threads.