ParallelWorkQueueCfgDefn.properties revision 3e8ebc69e18e02f0935b37e8f5837aab18557f50
fdaf522f78615dc3145b1771f6f8daba2df06bb6Satyen Desaiuser-friendly-name=Parallel Work Queue
fdaf522f78615dc3145b1771f6f8daba2df06bb6Satyen Desaiuser-friendly-plural-name=Parallel Work Queues
fdaf522f78615dc3145b1771f6f8daba2df06bb6Satyen Desaisynopsis=The Parallel Work Queue is a type of work queue that uses a number of worker threads that watch a queue and pick up an operation to process whenever one becomes available.
fdaf522f78615dc3145b1771f6f8daba2df06bb6Satyen Desaidescription=The parallel work queue is a FIFO queue serviced by a fixed number of worker threads. This fixed number of threads can be changed on the fly, with the change taking effect as soon as it is made. This work queue implementation is unbound ie it does not block after reaching certain queue size and as such should only be used on a very well tuned server configuration to avoid potential out of memory errors.
fdaf522f78615dc3145b1771f6f8daba2df06bb6Satyen Desaiproperty.java-class.synopsis=Specifies the fully-qualified name of the Java class that provides the Parallel Work Queue implementation.
fdaf522f78615dc3145b1771f6f8daba2df06bb6Satyen Desaiproperty.num-worker-threads.synopsis=Specifies the number of worker threads to be used for processing operations placed in the queue.
fdaf522f78615dc3145b1771f6f8daba2df06bb6Satyen Desaiproperty.num-worker-threads.description=If the value is increased, the additional worker threads are created immediately. If the value is reduced, the appropriate number of threads are destroyed as operations complete processing.