Bug 1711794
| Summary: | [OSP15][deployment] AMQP heartbeat thread missing heartbeats when running under nova_api | ||
|---|---|---|---|
| Product: | Red Hat OpenStack | Reporter: | Martin Schuppert <mschuppe> |
| Component: | openstack-tripleo-heat-templates | Assignee: | Martin Schuppert <mschuppe> |
| Status: | CLOSED NOTABUG | QA Contact: | Joe H. Rahme <jhakimra> |
| Severity: | high | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 15.0 (Stein) | CC: | bdobreli, dasmith, dciabrin, eglynn, jhakimra, kchamart, mbooth, mburns, michele, nova-maint, sbauza, sgordon, smooney, vromanso |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | 1706456 | Environment: | |
| Last Closed: | 2019-05-20 12:46:27 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | 1706456, 1913177 | ||
| Bug Blocks: | |||
|
Description
Martin Schuppert
2019-05-20 06:48:54 UTC
Cloned for deployment, but to note, we already have threads=1 (if not other specified by an
operator) as this is the default in puppet-nova [1] - 10-nova_api_wsgi.conf :
# ************************************
# Vhost template in module puppetlabs-apache
# Managed by Puppet
# ************************************
#
<VirtualHost 192.168.24.1:8774>
ServerName undercloud-0.ctlplane.localdomain
## Vhost docroot
DocumentRoot "/var/www/cgi-bin/nova"
## Directories, there should at least be a declaration for /var/www/cgi-bin/nova
<Directory "/var/www/cgi-bin/nova">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Require all granted
</Directory>
## Logging
ErrorLog "/var/log/httpd/nova_api_wsgi_error.log"
ServerSignature Off
CustomLog "/var/log/httpd/nova_api_wsgi_access.log" combined
SetEnvIf X-Forwarded-Proto https HTTPS=1
## WSGI configuration
WSGIApplicationGroup %{GLOBAL}
WSGIDaemonProcess nova-api display-name=nova_api_wsgi group=nova processes=4 threads=1 user=nova
WSGIProcessGroup nova-api
WSGIScriptAlias / "/var/www/cgi-bin/nova/nova-api"
</VirtualHost>
[1] https://github.com/openstack/puppet-nova/blob/stable/stein/manifests/wsgi/apache_api.pp#L55-L57
|