Re: Tomcat request hooks

2020-05-09 Thread Vikas Kumar
in worker threads). On Sat, May 9, 2020 at 8:12 PM Mark Thomas wrote: > On 09/05/2020 14:08, Vikas Kumar wrote: > > I did not know about the images being dropped. > > > > Here are the steps I depicted in the image: > > > > Step 0: Request accepted by OS &

Re: Tomcat request hooks

2020-05-09 Thread Vikas Kumar
application logic. Is there a way to do that? On Sat, May 9, 2020 at 6:16 PM calder wrote: > On Sat, May 9, 2020, 07:16 Vikas Kumar wrote: > > > As per my understanding (using a Spring Boot app with Tomcat server), we > > define: > > > >- Max no.

Tomcat request hooks

2020-05-09 Thread Vikas Kumar
As per my understanding (using a Spring Boot app with Tomcat server), we define: - Max no. of worker threads (maxThreads, default 200) - Tomcat queue size (maxConnections, default 8192 for APR, 1 for NIO). When all worker threads are busy, requests are placed into the queue. As