![Thomas Goirand](/assets/img/avatar_default.png)
This patch is adding the configuration of the number of workers, threads, and the size of the listen queue in Debian, which uses uwsgi to run Cinder API. Therefore, this patch adds a new cinder_api_uwsgi_config provider as well as a new cinder::wsgi::uwsgi class. Change-Id: I6f4c6a51f8e33616069411a926a63ba2b388e25d
42 lines
915 B
Puppet
42 lines
915 B
Puppet
#
|
|
# Copyright 2021 Thomas Goirand <zigo@debian.org>
|
|
#
|
|
# Author: Thomas Goirand <zigo@debian.org>
|
|
#
|
|
# == Class: cinder::wsgi::uwsgi
|
|
#
|
|
# Configure the UWSGI service for Cinder API.
|
|
#
|
|
# == Parameters
|
|
#
|
|
# [*processes*]
|
|
# (Optional) Number of processes.
|
|
# Defaults to $::os_workers.
|
|
#
|
|
# [*threads*]
|
|
# (Optional) Number of threads.
|
|
# Defaults to 32.
|
|
#
|
|
# [*listen_queue_size*]
|
|
# (Optional) Socket listen queue size.
|
|
# Defaults to 100
|
|
#
|
|
class cinder::wsgi::uwsgi (
|
|
$processes = $::os_workers,
|
|
$threads = 32,
|
|
$listen_queue_size = 100,
|
|
){
|
|
|
|
include cinder::deps
|
|
|
|
if $::os_package_type != 'debian'{
|
|
warning('This class is only valid for Debian, as other operating systems are not using uwsgi by default.')
|
|
}
|
|
|
|
cinder_api_uwsgi_config {
|
|
'uwsgi/processes': value => $processes;
|
|
'uwsgi/threads': value => $threads;
|
|
'uwsgi/listen': value => $listen_queue_size;
|
|
}
|
|
}
|