ParallelWorkQueueCfgDefn.properties revision b1dce270ec218b8ad86ce6d745d295da038a5c88
cd348e325366620fe047edcc849e3c9424828599Peter Brayuser-friendly-name=Parallel Work Queue
cd348e325366620fe047edcc849e3c9424828599Peter Brayuser-friendly-plural-name=Parallel Work Queues
0ca9a2c194523c517c3aafe5758e217ac88d6baaLubos Koscosynopsis=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.
cd348e325366620fe047edcc849e3c9424828599Peter Braydescription=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.
d2a02e104622a26dd90fa88f4f17188f2039809fPeter Brayproperty.java-class.synopsis=Specifies the fully-qualified name of the Java class that provides the Parallel Work Queue implementation.
d2a02e104622a26dd90fa88f4f17188f2039809fPeter Brayproperty.num-worker-threads.synopsis=Specifies the number of worker threads to be used for processing operations placed in the queue.
d2a02e104622a26dd90fa88f4f17188f2039809fPeter Brayproperty.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.