The Open vStorage VolumeDriver is the core of the Open vStorage solution: a high performance distributed block layer. It converts block storage into objects (Storage Container Objects).
Other
37
stars
18
forks
source link
Edge server workqueue does not fully utilize max number of threads #357
The number of threads used by the workqueue (WQ) is adjusted dynamically, based on the number of queued requests. Adding more threads happens by doubling the number up to a configurable maximum. Threads are removed again after a while if the number of queued requests is low.
This might lead to less threads being used than configured, e.g. the following was observed:
max number of threads: 16
first burst -> WQ scales up to 16 threads
idle period, some threads are taken out of service (at the beginning of the next burst)
The number of threads used by the workqueue (WQ) is adjusted dynamically, based on the number of queued requests. Adding more threads happens by doubling the number up to a configurable maximum. Threads are removed again after a while if the number of queued requests is low. This might lead to less threads being used than configured, e.g. the following was observed: