Configuring Network QoS Parameters ================================== :date: 2020-03-31 Overview -------- You can use the OpenStack Nova command-line interface (CLI) to specify a quality of service (QoS) setting for a virtual machine’s network interface, by setting the ``quota`` of a Nova flavor. Any virtual machine created with that Nova flavor will inherit all of the specified QoS settings. Additionally, if the virtual machine that was created with the QoS settings has multiple interfaces in different virtual networks, the same QoS settings will be applied to all of the network interfaces associated with the virtual machine. The QoS settings can be specified in unidirectional or bidirectional mode. The ``quota`` driver in Neutron converts QoS parameters into ``libvirt`` network settings of the virtual machine. The QoS parameters available in the quota driver only cover rate limiting the network interface. There are no specifications available for policy-based QoS at this time. QoS Configuration Examples -------------------------- Although the QoS setting can be specified in quota by using either Horizon or CLI, quota creation using CLI is more robust and stable, therefore, creating by CLI is the recommended method. Example ~~~~~~~ CLI for Nova flavor has the following format: :: nova flavor-key set quota:vif_ _ = value where: ```` is the name of an existing Nova flavor. ``vif__`` is the inbound or outbound QoS data name. QoS ``vif`` types include the following: - ``vif_inbound_average`` lets you specify the average rate of inbound (receive) traffic, in kilobytes/sec. - ``vif_outbound_average`` lets you specify the average rate of outbound (transmit) traffic, in kilobytes/sec. - Optional: ``vif_inbound_peak``\ and ``vif_outbound_peak`` specify the maximum rate of inbound and outbound traffic, respectively, in kilobytes/sec. - Optional: ``vif_inbound_burst`` and ``vif_outbound_peak`` specify the amount of kilobytes that can be received or transmitted, respectively, in a single burst at the peak rate. Details for various QoS parameters for ``libvirt`` can be found at http://libvirt.org/formatnetwork.html. The following example shows an inbound average of 800 kilobytes/sec, a peak of 1000 kilobytes/sec, and a burst amount of 30 kilobytes. :: nova flavor-key m1.small set quota:vif_inbound_average=800 nova flavor-key m1.small set quota:vif_inbound_peak=1000 nova flavor-key m1.small set quota:vif_inbound_burst=30 The following is an example of specified outbound parameters: :: nova flavor-key m1.small set quota:vif_outbound_average=800 nova flavor-key m1.small set quota:vif_outbound_peak=1000 nova flavor-key m1.small set quota:vif_outbound_burst=30 After the Nova flavor is configured for QoS, a virtual machine instance can be created, using either Horizon or CLI. The instance will have network settings corresponding to the nova flavor-key, as in the following: ::