PeopleSoft Admin Realtime Interview Questions

Performance Tuning of Web Server part 1



         Thread Count
         Thread count is the number of http actions that can be executed concurrently.
         Thread means Parallel processing.
         Dividing one process into different threads is called multi-threading.
         Threads are allocated and reallocated dynamically to increase the performance.
         we need to set the thread count in config.xml

         Location of config.xml file
         PS_HOME\webserv\<Domain>\config\config.xml
 
        <execute-queue>
                   <name> weblogic.kernel.Default</name>
                    <thread-count> 50 </thread-count>
        </execute-queue>

        Default thread count is 50 we can increase the thread count in config.xml

        If web server Performance is too low then try to increase the thread-count to 75 to 100.
       
        Example:
 
       <execute-queue>
                   <name> weblogic.kernel.Default</name>
                    <thread-count> 75 </thread-count>
        </execute-queue>

No comments:

Post a Comment