You have a question about WebSphere and can't find anything in the documentation ...
What happens when the WebContainer thread pool is fully used and a new request is received? I am talking about a situation where everyone is being used, and we have reached the maximum thread pool size, which means that a new one cannot be created to process the request.
Will the request: - crash immediately, and the response will contain some kind of error? - WAS somehow "put" a request for a given period and process it when one of the threads returns to the pool? Could some error / timeout occur if the wait time is too long? - WAS will be the "queue" of the request for an indefinite period, and the timeout can occur only on the user side (web browser / application)?
java web-applications threadpool websphere
Michal123456
source share