Sun logo      Previous      Contents      Next     

Sun Java™ System Application Server Platform Edition 8 Administration Guide

Chapter 13
Thread Pools

This chapter describes how to create, edit, and delete thread pools. It has the following sections:


About Thread Pools

Thread Pools in the Application Server

The Java Virtual Machine (JVM) can support many threads of execution at once. To help performance, the Application Server maintains one or more thread pools. You can assign specific thread pools to connector modules and to the ORB.

One thread pool can serve multiple connector modules and enterprise beans. Request threads handle user requests for application components. When the server receives a request, it assigns the request to a free thread from the thread pool. The thread executes the client's requests and returns results. For example, if the request needs to use a system resource that is currently busy, the thread waits until that resource is free before allowing the request to use that resource.

You can specify the minimum and maximum number of threads that are reserved for requests from applications. The thread pool is dynamically adjusted between these two values. The minimum thread pool size you specify signals the server to allocate at least that many threads in reserve for application requests. That number is increased up to the maximum thread pool size that you specify.

Increasing the number of threads available to a process allows the process to respond to more application requests simultaneously.

You can avoid thread starvation where one resource adapter or application occupies all threads in the Application Server by dividing the Application Server threads into different thread-pools.


Admin Console Tasks for Thread Pools

Creating Thread Pools

  1. In the tree component select the Thread Pools node.
  2. Under Current Pools click New.
  3. Enter the name of the thread pool in the Thread Pool ID field.
  4. Enter the minimum number of threads in the thread pool servicing requests in this queue in the Minimum Thread Pool Size field.
  5. These threads are created up front when this thread pool is instantiated.

  6. Enter the maximum number of threads in the thread pool servicing requests in this queue in the Maximum Thread Pool Size field.
  7. This is the upper limit on the number of threads that exist in the thread pool.

  8. Enter the number, in seconds, after which idle threads are removed from pool in the Idle Timeout field.
  9. Enter the total number of work queues that are serviced by this thread pool in the Number of Work Queues field.
  10. Click OK.
  11. Restart the Application Server.

Editing Thread Pools

  1. In the tree component select the Thread Pools node.
  2. Under Current Pools select the name of the thread pool you want to change.
  3. Enter the minimum number of threads in the thread pool servicing requests in this queue in the Minimum Thread Pool Size field.
  4. These threads are created up front when this thread pool is instantiated.

  5. Enter the maximum number of threads in the thread pool servicing requests in this queue in the Maximum Thread Pool Size field.
  6. This is the upper limit on the number of threads that exist in the thread pool.

  7. Enter the number, in seconds, after which idle threads are removed from pool in the Idle Timeout field.
  8. Enter the total number of work queues that are serviced by this thread pool in the Number of Work Queues field.
  9. Click Save.
  10. Restart the Application Server.

Deleting Thread Pools

  1. In the tree component select the Thread Pools node.
  2. Check the thread pool name you want to delete in the Current Pools table.
  3. Click Delete.
  4. Restart the Application Server.



Previous      Contents      Next     


Copyright 2004 Sun Microsystems, Inc. All rights reserved.