I have been working on Spring Boot application where I have limited memory for JVM upto 2 GB.
At controller, user sends some request which is handled by my Executors thread pool. It is a light weight task where each thread requires just few String variables of memory while its processing.
Considering I might deploy this application in PROD, Is there is a limit of user requests I can cater to with this approach.
What is the maximum limit? If no, will it be until JVM memory is full?
Thanks for the help.