Closed
Description
The default thread pool settings for most thread pools is problematic in it being cached
(for example, for index
, search
) since its unbounded in its thread creations. Change the default thread pool settings to follows:
index
: type: fixed, size: num_procbulk
: type: fixed, size: num_procget
: type: fixed, size: num_procsearch
: type: fixed, size: num_proc * 2, queue_size: 1000percolate
: type: fixed, size: num_procmanagement
: type: scaling, size: 5flush
: type: scaling, size: halfProcMax5merge
: type: scaling, size: halfProcMax5,refresh
: type: scaling, size: halfProcMax10warmer
: type: scaling, size: halfProcMax5