2

How to configure spring boot server threads (for both IO and Worker) for undertow embedded server? Thanks in advance.

S. Das
  • 93
  • 2
  • 10

1 Answers1

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