A client was recently performing some high-load Web UI testing on a new OTM v5.5 instance and continually received the following error:
Changing the Execute threads for a WebLogic instance is commonplace once OTM is pushed in high-performance load testing, however this was a new error that we hadn't seen before. In the end, we tracked this down to a specific parameter in the WebLogic config.xml.template file that specifies the percentage of Execute Threads set aside as Socket Reader Threads.
So we edited the config file and added the following parameter:
The source for this info was the following document:Hope this helps!
Thanks!
--Chris
Code:
####<Apr 20, 2007 11:42:09 AM EDT> <Warning> <Socket> <otm.company.com> <gc3-otm> <ListenThread.Default> <<WLS Kernel>> <> <BEA-000402> <There are: 9 active sockets, but the maximum number of socket reader threads allowed by the configuration is: 8. You may want to alter your configuration.>
So we edited the config file and added the following parameter:
Code:
ThreadPoolPercentSocketReaders="50"
Thanks!
--Chris
Comment