WebLogic minimum thread

1) Modifying the config.xml

Just add the following line(s) in your server definition :

 

<server>

<name>AdminServer</name>

<self-tuning-thread-pool-size-min>100</self-tuning-thread-pool-size-min>

<self-tuning-thread-pool-size-max>200</self-tuning-thread-pool-size-max>

[…]

</server>

2) Adding some JVM parameters

 

Personally, that’s my favorite option since I don’t like when people go in a generated config file

and mess up with tags. If you’re sure of what you’re doing, that’s ok, but it’s safer the following way :

add the following option in your command line : -Dweblogic.threadpool.MinPoolSize=100

@ECHO OFF

@REM WARNING: This file is created by the Configuration Wizard.
@REM Any changes to this script may be lost when adding extensions to this configuration.

SETLOCAL

set DOMAIN_HOME=D:\BEA_ROOT\user_projects\domains\essex\ora_bpel
set USER_MEM_ARGS=-Dweblogic.threadpool.MinPoolSize=100
call “%DOMAIN_HOME%\bin\startWebLogic.cmd" %*

ENDLOCAL

http://m-button.blogspot.com/2009/02/tuning-default-workmanager-on-weblogic.html

https://www.itread01.com/content/1546159170.html

 

 

發表留言