R
Roy Ellis
Guest
You understand most of it, let me explain the rest. 1) Agents - these are multi-session agents, like our classic AppServer agents except they can handle multiple ABL sessions concurrently (the executable is _mproapsv(.exe)). 2) Maximum ABL Sessions is the total number of sessions that Agent can handle 3) Maximum connections per agent is the total number of "CONCURRENT" connects per Agent So in your example, 10 Agents X 100 Maximum ABL sessions per agent, then you would have 1000 total sessions, however, only 160 concurrent sessions, the remainder of the sessions would have to wait for a busy session to become available. So if you want 1000 concurrent connections total, the your settings would be something like: Maximum number of agents = 10 Maximum connections per agent = 100 Maximum ABL session per agent = 100 Also you will need to increase the Tomcat concurrent threads value (the default is 300) tcman config psc.as.executor.maxthreads This will show you the current setting tcman config psc.as.executor.maxthreads=1000 This will change the value to 1000 tcman config psc.as.executor.maxthreads This will show you the new setting Then you will have to restart your PASOE instance for the change to take affect. Let me know if you have further questions, Roy
Continue reading...
Continue reading...