Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a limit on the number of concurrent requests in DropWizard

Is there any limit on the maximum number of concurrent requests that Dropwizard can handle?

Does Jersey have the same limit?

like image 403
hatellla Avatar asked Oct 25 '25 17:10

hatellla


1 Answers

There is maxQueuedRequests property which limits the maximum number of requests to queue before blocking the acceptor threads. The default value is 1024. You should check the configuration reference.

like image 170
zloster Avatar answered Oct 28 '25 03:10

zloster