How to configure spring boot server threads (for both IO and Worker) for undertow embedded server? Thanks in advance.
Asked
Active
Viewed 4,993 times
1 Answers
8
As per the documentation:
server.undertow.threads.io //Number of I/O threads to create for the worker. The default is derived from the number of available processors.
server.undertow.threads.worker //Number of worker threads. The default is 8 times the number of I/O threads.

Victor
- 2,450
- 2
- 23
- 54