Home > Back-end >  How many concurrent single server can support?
How many concurrent single server can support?

Time:11-24

Springboot web project
Postgresql database
Single server generally can support many concurrent access? How many people online processing?
Additional access bottleneck in what place? The web server or in a database?

CodePudding user response:

Springboot embedded tomcat, tomcat default maximum thread count is 200, maximum number of connections is 10000, so the feeling is 200?

CodePudding user response:

It all depends on how your program written, if pure static pages, the bottleneck is basic on the size of the web page, if the dynamic page, but demand is simple, the bottleneck in the memory management and the complexity of algorithm, if the business logic is more complex, relatively large data objects, the bottleneck is obvious, the operation of the CPU, IO, bandwidth can be the bottleneck,

CodePudding user response:

Concurrent bottleneck inserted in the database, query in the WEB server

CodePudding user response:

Bottlenecks mostly in the database, and you the question is meaningless, simple and complex business operations has a big difference of throughput
  • Related