ff pereira
ff pereira

Reputation: 43

How many concurrent requests can a servlet handle in glassfish deployment?

I'm developing a servlet that will be deployed in Glassfish 4.1 I'm wondering how many concurrent requests or "connections" can be made to a servlet for scalability purposes?

I've read that sometimes is 10, sometimes a thread pool can be used, but i haven't found a way to configure or read this info related to glassfish contained servlets.

Upvotes: 1

Views: 395

Answers (1)

Ramesh PVK
Ramesh PVK

Reputation: 15446

It look like the minimum is 2 and maximum is 5 as per this document Glassfish Performance tuning

Upvotes: 1

Related Questions