I am using Spring webflux. I send hundreds of concurrent requests to the rest end point. When I checked, only 4 threads are being shared to handle all the loads.
Is this normal? Is there any spring property to increase this count?
- reactor-http-epoll-1
- reactor-http-epoll-2
- reactor-http-epoll-3
- reactor-http-epoll-4
I do understand that I could use reactor Schedulers to offload the blocking work. My question is more of - what are these 4 threads and where do we have this configuration?