Bug 1619104
| Summary: | [OSP13] RX/TX Queue Size is missing THT parameter | |||
|---|---|---|---|---|
| Product: | Red Hat OpenStack | Reporter: | Martin Schuppert <mschuppe> | |
| Component: | openstack-tripleo-heat-templates | Assignee: | Martin Schuppert <mschuppe> | |
| Status: | CLOSED ERRATA | QA Contact: | Archit Modi <amodi> | |
| Severity: | high | Docs Contact: | ||
| Priority: | high | |||
| Version: | 13.0 (Queens) | CC: | agurenko, cfontain, eelena, fbaudin, jhakimra, jschluet, lmarsh, lyarwood, mbabushk, mburns, mschuppe, oblaut, owalsh, skramaja, supadhya, yrachman, zgreenbe | |
| Target Milestone: | z3 | Keywords: | Triaged, ZStream | |
| Target Release: | 13.0 (Queens) | |||
| Hardware: | Unspecified | |||
| OS: | Unspecified | |||
| Whiteboard: | ||||
| Fixed In Version: | openstack-tripleo-heat-templates-8.0.4-23.el7ost | Doc Type: | Bug Fix | |
| Doc Text: |
In prior releases, you could set RX/TX queue size via nova::compute::libvirt::rx_queue_size/nova::compute::libvirt::tx_queue_size. However, there was no dedicated TripleO heat template parameter. With this release, the RX/TX queue size can be set on a role base like this:
parameter_defaults:
ComputeParameters:
NovaLibvirtRxQueueSize: 1024
NovaLibvirtTxQueueSize: 1024
The result is rx_queue_size/tx_queue_size is set using new parameters.
|
Story Points: | --- | |
| Clone Of: | 1617927 | |||
| : | 1623553 (view as bug list) | Environment: | ||
| Last Closed: | 2018-11-13 22:28:18 UTC | Type: | Bug | |
| 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: | 1617927 | |||
| Bug Blocks: | 1623553, 1623554 | |||
|
Description
Martin Schuppert
2018-08-20 06:00:05 UTC
RX/TX queue size can be set on a role base like:
parameter_defaults:
ComputeParameters:
NovaLibvirtRxQueueSize: 1024
NovaLibvirtTxQueueSize: 1024
[root@compute-0 ~]# egrep "^rx|^tx" /var/lib/config-data/puppet-generated/nova_libvirt/etc/nova/nova.conf
rx_queue_size=1024
tx_queue_size=1024
(undercloud) [stack@undercloud-0 ~]$ cat virt/extra_templates.yaml
parameter_defaults:
ComputeExtraConfig:
nova::compute::libvirt::rx_queue_size: 1024
nova::compute::libvirt::tx_queue_size: 1024
[heat-admin@compute-0 ~]$ sudo docker exec nova_libvirt egrep "^rx|^tx" /etc/nova/nova.conf
rx_queue_size=1024
tx_queue_size=1024
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2018:3587 |