Increase queue length for Weblogic Server thread pool

The Weblogic Server uses the single thread pool for executing the system administrator or application activities.  Weblogic Server executes the received requests based on the maximum queue length defined for the thread pool. In case of exceeding this limit, WebLogic starts rejecting the web application requests.

We can avoid this by increasing the maximum queue length for the thread pool by making change in Environments > Servers > Threads -> Select an execute thread.
The default value for thread pool is 65536.

Reducing the HTTP Sessions
We can limit the number of HTTP sessions based on the memory allocation which avoids in resulting out of memory errors. The following entry can be done in deployment descriptor  file for handling count for HTTP sessions.
<session-descriptor>
<max-in-memory-sessions>10</max-in-memory-sessions>
</session-descriptor>

Exit from server  on Out of Memory exception
performing the exit when  out of memory exception occurs provides the automatic shutdown and configure the node manager or high availability tool to restart the weblogic server which reduces the down time for the server.

Add the below entry in the config.xml for automatic shutdown of server
<overload-protection>
<panic-action>system-exit</panic-action>
</overload-protection>