A part of my dubbo configuration file:
<dubbo:protocol name="dubbo" dispatcher="all" threadpool="fixed" threads="100" />
According to dubbo documentation the config above means
A fixed size of thread pool and it creates threads when starts, never shut down.
But when I started the application then I use jstack
to see if there are more than 100 threads, I found only about 40 threads and I didn't find any dubbo threads. So, what happened?