1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751
|
..
Licensed under the Apache License, Version 2.0 (the "License"); you may
not use this file except in compliance with the License. You may obtain
a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations
under the License.
Convention for heading levels in Open vSwitch documentation:
======= Heading 0 (reserved for the title in a document)
------- Heading 1
~~~~~~~ Heading 2
+++++++ Heading 3
''''''' Heading 4
Avoid deeper levels because they do not render well.
======================
Open vSwitch with DPDK
======================
This document describes how to build and install Open vSwitch using a DPDK
datapath. Open vSwitch can use the DPDK library to operate entirely in
userspace.
.. important::
The :doc:`releases FAQ </faq/releases>` lists support for the required
versions of DPDK for each version of Open vSwitch. If building OVS and
DPDK outside of the main build tree users should consult this list
first.
Build requirements
------------------
In addition to the requirements described in :doc:`general`, building Open
vSwitch with DPDK will require the following:
- DPDK 24.11.1
- A `DPDK supported NIC`_
Only required when physical ports are in use
- A suitable kernel
On Linux Distros running kernel version >= 3.0, only `IOMMU` needs to enabled
via the grub cmdline, assuming you are using **VFIO**. For older kernels,
ensure the kernel is built with ``UIO``, ``HUGETLBFS``,
``PROC_PAGE_MONITOR``, ``HPET``, ``HPET_MMAP`` support. If these are not
present, it will be necessary to upgrade your kernel or build a custom kernel
with these flags enabled.
Detailed system requirements can be found at `DPDK requirements`_.
.. _DPDK supported NIC: https://doc.dpdk.org/guides-24.11/nics/index.html
.. _DPDK requirements: https://doc.dpdk.org/guides-24.11/linux_gsg/sys_reqs.html
.. _dpdk-install:
Installing
----------
Install DPDK
~~~~~~~~~~~~
#. Download the `DPDK sources`_, extract the file and set ``DPDK_DIR``::
$ cd /usr/src/
$ wget https://fast.dpdk.org/rel/dpdk-24.11.1.tar.xz
$ tar xf dpdk-24.11.1.tar.xz
$ export DPDK_DIR=/usr/src/dpdk-stable-24.11.1
$ cd $DPDK_DIR
#. Configure and install DPDK using Meson
Build and install the DPDK library::
$ export DPDK_BUILD=$DPDK_DIR/build
$ meson build
$ ninja -C build
$ sudo ninja -C build install
$ sudo ldconfig
Check if libdpdk can be found by pkg-config::
$ pkg-config --modversion libdpdk
The above command should return the DPDK version installed. If not found,
export the path to the installed DPDK libraries::
$ export PKG_CONFIG_PATH=/path/to/installed/".pc" file/for/DPDK
For example, On Fedora 32::
$ export PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig
Detailed information can be found at `DPDK documentation`_.
#. (Optional) Configure and export the DPDK shared library location
Since DPDK is built both as static and shared library by default, no extra
configuration is required for the build.
Exporting the path to library is not necessary if the DPDK libraries are
system installed. For libraries installed using a prefix, export the path
to this library::
$ export LD_LIBRARY_PATH=/path/to/installed/DPDK/libraries
.. note::
Minor performance loss is expected when using OVS with a shared DPDK
library compared to a static DPDK library.
.. _DPDK sources: http://dpdk.org/rel
.. _DPDK documentation:
https://doc.dpdk.org/guides-24.11/linux_gsg/build_dpdk.html
Install OVS
~~~~~~~~~~~
OVS can be installed using different methods. For OVS to use DPDK, it
has to be configured to build against the DPDK library (``--with-dpdk``).
.. note::
This section focuses on generic recipe that suits most cases. For
distribution specific instructions, refer to one of the more relevant guides.
.. _OVS sources: http://openvswitch.org/releases/
#. Ensure the standard OVS requirements, described in
:ref:`general-build-reqs`, are installed
#. Bootstrap, if required, as described in :ref:`general-bootstrapping`
#. Configure the package using the ``--with-dpdk`` flag:
If OVS must consume DPDK static libraries
(also equivalent to ``--with-dpdk=yes`` )::
$ ./configure --with-dpdk=static
If OVS must consume DPDK shared libraries::
$ ./configure --with-dpdk=shared
.. note::
While ``--with-dpdk`` is required, you can pass any other configuration
option described in :ref:`general-configuring`.
It is strongly recommended to build OVS with at least ``-msse4.2`` and
``-mpopcnt`` optimization flags. If these flags are not enabled, the AVX512
optimized DPCLS implementation is not available in the resulting binary.
For technical details see the subtable registration code in the
``lib/dpif-netdev-lookup.c`` file.
An example that enables the AVX512 optimizations is::
$ ./configure --with-dpdk=static CFLAGS="-Ofast -msse4.2 -mpopcnt"
#. Build and install OVS, as described in :ref:`general-building`
Additional information can be found in :doc:`general`.
.. note::
If you are running using the Fedora or Red Hat package, the Open vSwitch
daemon will run as a non-root user. This implies that you must have a
working IOMMU. Visit the `RHEL README`__ for additional information.
__ https://github.com/openvswitch/ovs/blob/main/rhel/README.RHEL.rst
Possible issues when enabling AVX512
++++++++++++++++++++++++++++++++++++
The enabling of ISA optimized builds requires build-system support.
Certain versions of the assembler provided by binutils is known to have
AVX512 assembling issues. The binutils versions affected are 2.30 and 2.31.
As many distros backport fixes to previous versions of a package, checking
the version output of ``as -v`` can err on the side of disabling AVX512. To
remedy this, the OVS build system uses a build-time check to see if ``as``
will correctly assemble the AVX512 code. The output of a good version when
running the ``./configure`` step of the build process is as follows::
$ checking binutils avx512 assembler checks passing... yes
If a bug is detected in the binutils assembler, it would indicate ``no``.
Build an updated binutils, or request a backport of this binutils
fix commit ``2069ccaf8dc28ea699bd901fdd35d90613e4402a`` to fix the issue.
Setup
-----
Setup Hugepages
~~~~~~~~~~~~~~~
Allocate a number of 2M Huge pages:
- For persistent allocation of huge pages, write to hugepages.conf file
in `/etc/sysctl.d`::
$ echo 'vm.nr_hugepages=2048' > /etc/sysctl.d/hugepages.conf
- For run-time allocation of huge pages, use the ``sysctl`` utility::
$ sysctl -w vm.nr_hugepages=N # where N = No. of 2M huge pages
To verify hugepage configuration::
$ grep HugePages_ /proc/meminfo
Mount the hugepages, if not already mounted by default::
$ mount -t hugetlbfs none /dev/hugepages
.. note::
The amount of hugepage memory required can be affected by various
aspects of the datapath and device configuration. Refer to
:doc:`/topics/dpdk/memory` for more details.
.. _dpdk-vfio:
Setup DPDK devices using VFIO
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
VFIO is preferred to the UIO driver when using recent versions of DPDK. VFIO
support required support from both the kernel and BIOS. For the former, kernel
version > 3.6 must be used. For the latter, you must enable VT-d in the BIOS
and ensure this is configured via grub. To ensure VT-d is enabled via the BIOS,
run::
$ dmesg | grep -e DMAR -e IOMMU
If VT-d is not enabled in the BIOS, enable it now.
To ensure VT-d is enabled in the kernel, run::
$ cat /proc/cmdline | grep iommu=pt
$ cat /proc/cmdline | grep intel_iommu=on
If VT-d is not enabled in the kernel, enable it now.
Once VT-d is correctly configured, load the required modules and bind the NIC
to the VFIO driver::
$ modprobe vfio-pci
$ /usr/bin/chmod a+x /dev/vfio
$ /usr/bin/chmod 0666 /dev/vfio/*
$ $DPDK_DIR/usertools/dpdk-devbind.py --bind=vfio-pci eth1
$ $DPDK_DIR/usertools/dpdk-devbind.py --status
Setup OVS
~~~~~~~~~
Open vSwitch should be started as described in :doc:`general` with the
exception of ovs-vswitchd, which requires some special configuration to enable
DPDK functionality. DPDK configuration arguments can be passed to ovs-vswitchd
via the ``other_config`` column of the ``Open_vSwitch`` table. At a minimum,
the ``dpdk-init`` option must be set to either ``true`` or ``try``.
For example::
$ export PATH=$PATH:/usr/local/share/openvswitch/scripts
$ export DB_SOCK=/usr/local/var/run/openvswitch/db.sock
$ ovs-vsctl --no-wait set Open_vSwitch . other_config:dpdk-init=true
$ ovs-ctl --no-ovsdb-server --db-sock="$DB_SOCK" start
There are many other configuration options, the most important of which are
listed below. Defaults will be provided for all values not explicitly set.
``dpdk-init``
Specifies whether OVS should initialize and support DPDK ports. This field
can either be ``true`` or ``try``.
A value of ``true`` will cause the ovs-vswitchd process to abort on
initialization failure.
A value of ``try`` will imply that the ovs-vswitchd process should
continue running even if the EAL initialization fails.
``dpdk-lcore-mask``
Specifies the CPU cores on which dpdk lcore threads should be spawned and
expects hex string (eg '0x123').
``dpdk-socket-mem``
Comma separated list of memory to pre-allocate from hugepages on specific
sockets. If not specified, this option will not be set by default. DPDK
default will be used instead.
``dpdk-hugepage-dir``
Directory where hugetlbfs is mounted
``vhost-sock-dir``
Option to set the path to the vhost-user unix socket files.
If allocating more than one GB hugepage, you can configure the
amount of memory used from any given NUMA nodes. For example, to use 1GB from
NUMA node 0 and 0GB for all other NUMA nodes, run::
$ ovs-vsctl --no-wait set Open_vSwitch . \
other_config:dpdk-socket-mem="1024,0"
or::
$ ovs-vsctl --no-wait set Open_vSwitch . \
other_config:dpdk-socket-mem="1024"
.. note::
Changing any of these options requires restarting the ovs-vswitchd
application
See the section ``Performance Tuning`` for important DPDK customizations.
Validating
----------
DPDK support can be confirmed by validating the ``dpdk_initialized`` boolean
value from the ovsdb. A value of ``true`` means that the DPDK EAL
initialization succeeded::
$ ovs-vsctl get Open_vSwitch . dpdk_initialized
true
Additionally, the library version linked to ovs-vswitchd can be confirmed
with either the ovs-vswitchd logs, or by running either of the commands::
$ ovs-vswitchd --version
ovs-vswitchd (Open vSwitch) 2.9.0
DPDK 17.11.0
$ ovs-vsctl get Open_vSwitch . dpdk_version
"DPDK 17.11.0"
At this point you can use ovs-vsctl to set up bridges and other Open vSwitch
features. Seeing as we've configured DPDK support, we will use DPDK-type
ports. For example, to create a userspace bridge named ``br0`` and add two
``dpdk`` ports to it, run::
$ ovs-vsctl add-br br0 -- set bridge br0 datapath_type=netdev
$ ovs-vsctl add-port br0 myportnameone -- set Interface myportnameone \
type=dpdk options:dpdk-devargs=0000:06:00.0
$ ovs-vsctl add-port br0 myportnametwo -- set Interface myportnametwo \
type=dpdk options:dpdk-devargs=0000:06:00.1
DPDK devices will not be available for use until a valid dpdk-devargs is
specified.
Refer to ovs-vsctl(8) and :doc:`/howto/dpdk` for more details.
Performance Tuning
------------------
To achieve optimal OVS performance, the system can be configured and that
includes BIOS tweaks, Grub cmdline additions, better understanding of NUMA
nodes and apt selection of PCIe slots for NIC placement.
.. note::
This section is optional. Once installed as described above, OVS with DPDK
will work out of the box.
Recommended BIOS Settings
~~~~~~~~~~~~~~~~~~~~~~~~~
.. list-table:: Recommended BIOS Settings
:header-rows: 1
* - Setting
- Value
* - C3 Power State
- Disabled
* - C6 Power State
- Disabled
* - MLC Streamer
- Enabled
* - MLC Spatial Prefetcher
- Enabled
* - DCU Data Prefetcher
- Enabled
* - DCA
- Enabled
* - CPU Power and Performance
- Performance
* - Memory RAS and Performance Config -> NUMA optimized
- Enabled
PCIe Slot Selection
~~~~~~~~~~~~~~~~~~~
The fastpath performance can be affected by factors related to the placement of
the NIC, such as channel speeds between PCIe slot and CPU or the proximity of
PCIe slot to the CPU cores running the DPDK application. Listed below are the
steps to identify right PCIe slot.
#. Retrieve host details using ``dmidecode``. For example::
$ dmidecode -t baseboard | grep "Product Name"
#. Download the technical specification for product listed, e.g: S2600WT2
#. Check the Product Architecture Overview on the Riser slot placement, CPU
sharing info and also PCIe channel speeds
For example: On S2600WT, CPU1 and CPU2 share Riser Slot 1 with Channel speed
between CPU1 and Riser Slot1 at 32GB/s, CPU2 and Riser Slot1 at 16GB/s.
Running DPDK app on CPU1 cores and NIC inserted in to Riser card Slots will
optimize OVS performance in this case.
#. Check the Riser Card #1 - Root Port mapping information, on the available
slots and individual bus speeds. In S2600WT slot 1, slot 2 has high bus
speeds and are potential slots for NIC placement.
Advanced Hugepage Setup
~~~~~~~~~~~~~~~~~~~~~~~
Allocate and mount 1 GB hugepages.
- For persistent allocation of huge pages, add the following options to the
kernel bootline::
default_hugepagesz=1GB hugepagesz=1G hugepages=N
For platforms supporting multiple huge page sizes, add multiple options::
default_hugepagesz=<size> hugepagesz=<size> hugepages=N
where:
``N``
number of huge pages requested
``size``
huge page size with an optional suffix ``[kKmMgG]``
- For run-time allocation of huge pages::
$ echo N > /sys/devices/system/node/nodeX/hugepages/hugepages-1048576kB/nr_hugepages
where:
``N``
number of huge pages requested
``X``
NUMA Node
.. note::
For run-time allocation of 1G huge pages, Contiguous Memory Allocator
(``CONFIG_CMA``) has to be supported by kernel, check your Linux distro.
Now mount the huge pages, if not already done so::
$ mount -t hugetlbfs -o pagesize=1G none /dev/hugepages
Isolate Cores
~~~~~~~~~~~~~
The ``isolcpus`` option can be used to isolate cores from the Linux scheduler.
The isolated cores can then be used to dedicatedly run HPC applications or
threads. This helps in better application performance due to zero context
switching and minimal cache thrashing. To run platform logic on core 0 and
isolate cores between 1 and 19 from scheduler, add ``isolcpus=1-19`` to GRUB
cmdline.
.. note::
It has been verified that core isolation has minimal advantage due to mature
Linux scheduler in some circumstances.
Compiler Optimizations
~~~~~~~~~~~~~~~~~~~~~~
The default compiler optimization level is ``-O2``. Changing this to more
aggressive compiler optimization such as ``-O3 -march=native`` with
gcc (verified on 5.3.1) can produce performance gains though not significant.
``-march=native`` will produce optimized code on local machine and should be
used when software compilation is done on Testbed.
Multiple Poll-Mode Driver Threads
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
With pmd multi-threading support, OVS creates one pmd thread for each NUMA node
by default, if there is at least one DPDK interface from that NUMA node added
to OVS. However, in cases where there are multiple ports/rxq's producing
traffic, performance can be improved by creating multiple pmd threads running
on separate cores. These pmd threads can share the workload by each being
responsible for different ports/rxq's. Assignment of ports/rxq's to pmd threads
is done automatically.
A set bit in the mask means a pmd thread is created and pinned to the
corresponding CPU core. For example, to run pmd threads on core 1 and 2::
$ ovs-vsctl set Open_vSwitch . other_config:pmd-cpu-mask=0x6
When using dpdk and dpdkvhostuser ports in a bi-directional VM loopback as
shown below, spreading the workload over 2 or 4 pmd threads shows significant
improvements as there will be more total CPU occupancy available::
NIC port0 <-> OVS <-> VM <-> OVS <-> NIC port 1
Refer to ovs-vswitchd.conf.db(5) for additional information on configuration
options.
Affinity
~~~~~~~~
For superior performance, DPDK pmd threads and Qemu vCPU threads need to
have affinity set accordingly.
- PMD thread Affinity
A poll mode driver (pmd) thread handles the I/O of all DPDK interfaces
assigned to it. A pmd thread shall poll the ports for incoming packets,
switch the packets and send to tx port. A pmd thread is CPU bound, and needs
to be have affinity set to isolated cores for optimum performance. Even
though a PMD thread may exist, the thread only starts consuming CPU cycles if
there is at least one receive queue assigned to the pmd.
.. note::
On NUMA systems, PCI devices are also local to a NUMA node. Unbound rx
queues for a PCI device will be assigned to a pmd on it's local NUMA node
if a non-isolated PMD exists on that NUMA node. If not, the queue will be
assigned to a non-isolated pmd on a remote NUMA node. This will result in
reduced maximum throughput on that device and possibly on other devices
assigned to that pmd thread. If such a queue assignment is made a warning
message will be logged: "There's no available (non-isolated) pmd thread on
numa node N. Queue Q on port P will be assigned to the pmd on core C
(numa node N'). Expect reduced performance."
Binding PMD threads to cores is described in the above section
``Multiple Poll-Mode Driver Threads``.
- QEMU vCPU thread Affinity
A VM performing simple packet forwarding or running complex packet pipelines
has to ensure that the vCPU threads performing the work has as much CPU
occupancy as possible.
For example, on a multicore VM, multiple QEMU vCPU threads shall be spawned.
When the DPDK ``testpmd`` application that does packet forwarding is invoked,
the ``taskset`` command should be used to affinitize the vCPU threads to the
dedicated isolated cores on the host system.
Enable HyperThreading
~~~~~~~~~~~~~~~~~~~~~
With HyperThreading, or SMT, enabled, a physical core appears as two logical
cores. SMT can be utilized to spawn worker threads on logical cores of the same
physical core there by saving additional cores.
With DPDK, when pinning pmd threads to logical cores, care must be taken to set
the correct bits of the ``pmd-cpu-mask`` to ensure that the pmd threads are
pinned to SMT siblings.
Take a sample system configuration, with 2 sockets, 2 * 10 core processors, HT
enabled. This gives us a total of 40 logical cores. To identify the physical
core shared by two logical cores, run::
$ cat /sys/devices/system/cpu/cpuN/topology/thread_siblings_list
where ``N`` is the logical core number.
In this example, it would show that cores ``1`` and ``21`` share the same
physical core. Logical cores can be specified in pmd-cpu-masks similarly to
physical cores, as described in ``Multiple Poll-Mode Driver Threads``.
NUMA/Cluster-on-Die
~~~~~~~~~~~~~~~~~~~
Ideally inter-NUMA datapaths should be avoided where possible as packets will
go across QPI and there may be a slight performance penalty when compared with
intra NUMA datapaths. On Intel Xeon Processor E5 v3, Cluster On Die is
introduced on models that have 10 cores or more. This makes it possible to
logically split a socket into two NUMA regions and again it is preferred where
possible to keep critical datapaths within the one cluster.
It is good practice to ensure that threads that are in the datapath are pinned
to cores in the same NUMA area. e.g. pmd threads and QEMU vCPUs responsible for
forwarding. If DPDK is built with ``CONFIG_RTE_LIBRTE_VHOST_NUMA=y``, vHost
User ports automatically detect the NUMA socket of the QEMU vCPUs and will be
serviced by a PMD from the same node provided a core on this node is enabled in
the ``pmd-cpu-mask``. ``libnuma`` packages are required for this feature.
Binding PMD threads is described in the above section
``Multiple Poll-Mode Driver Threads``.
DPDK Physical Port Rx Queues
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
::
$ ovs-vsctl set Interface <DPDK interface> options:n_rxq=<integer>
The above command sets the number of rx queues for DPDK physical interface.
The rx queues are assigned to pmd threads on the same NUMA node in a
round-robin fashion.
.. _dpdk-queues-sizes:
DPDK Physical Port Queue Sizes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
::
$ ovs-vsctl set Interface dpdk0 options:n_rxq_desc=<integer>
$ ovs-vsctl set Interface dpdk0 options:n_txq_desc=<integer>
The above command sets the number of rx/tx descriptors that the NIC associated
with dpdk0 will be initialised with.
Different ``n_rxq_desc`` and ``n_txq_desc`` configurations yield different
benefits in terms of throughput and latency for different scenarios.
Generally, smaller queue sizes can have a positive impact for latency at the
expense of throughput. The opposite is often true for larger queue sizes.
Note: increasing the number of rx descriptors eg. to 4096 may have a negative
impact on performance due to the fact that non-vectorised DPDK rx functions may
be used. This is dependent on the driver in use, but is true for the commonly
used i40e and ixgbe DPDK drivers.
Exact Match Cache
~~~~~~~~~~~~~~~~~
Each pmd thread contains one Exact Match Cache (EMC). After initial flow setup
in the datapath, the EMC contains a single table and provides the lowest level
(fastest) switching for DPDK ports. If there is a miss in the EMC then the next
level where switching will occur is the datapath classifier. Missing in the
EMC and looking up in the datapath classifier incurs a significant performance
penalty. If lookup misses occur in the EMC because it is too small to handle
the number of flows, its size can be increased. The EMC size can be modified by
editing the define ``EM_FLOW_HASH_SHIFT`` in ``lib/dpif-netdev.c``.
As mentioned above, an EMC is per pmd thread. An alternative way of increasing
the aggregate amount of possible flow entries in EMC and avoiding datapath
classifier lookups is to have multiple pmd threads running.
Rx Mergeable Buffers
~~~~~~~~~~~~~~~~~~~~
Rx mergeable buffers is a virtio feature that allows chaining of multiple
virtio descriptors to handle large packet sizes. Large packets are handled by
reserving and chaining multiple free descriptors together. Mergeable buffer
support is negotiated between the virtio driver and virtio device and is
supported by the DPDK vhost library. This behavior is supported and enabled by
default, however in the case where the user knows that rx mergeable buffers are
not needed i.e. jumbo frames are not needed, it can be forced off by adding
``mrg_rxbuf=off`` to the QEMU command line options. By not reserving multiple
chains of descriptors it will make more individual virtio descriptors available
for rx to the guest using dpdkvhost ports and this can improve performance.
Output Packet Batching
~~~~~~~~~~~~~~~~~~~~~~
To make advantage of batched transmit functions, OVS collects packets in
intermediate queues before sending when processing a batch of received packets.
Even if packets are matched by different flows, OVS uses a single send
operation for all packets destined to the same output port.
Furthermore, OVS is able to buffer packets in these intermediate queues for a
configurable amount of time to reduce the frequency of send bursts at medium
load levels when the packet receive rate is high, but the receive batch size
still very small. This is particularly beneficial for packets transmitted to
VMs using an interrupt-driven virtio driver, where the interrupt overhead is
significant for the OVS PMD, the host operating system and the guest driver.
The ``tx-flush-interval`` parameter can be used to specify the time in
microseconds OVS should wait between two send bursts to a given port (default
is ``0``). When the intermediate queue fills up before that time is over, the
buffered packet batch is sent immediately::
$ ovs-vsctl set Open_vSwitch . other_config:tx-flush-interval=50
This parameter influences both throughput and latency, depending on the traffic
load on the port. In general lower values decrease latency while higher values
may be useful to achieve higher throughput.
Low traffic (``packet rate < 1 / tx-flush-interval``) should not experience
any significant latency or throughput increase as packets are forwarded
immediately.
At intermediate load levels
(``1 / tx-flush-interval < packet rate < 32 / tx-flush-interval``) traffic
should experience an average latency increase of up to
``1 / 2 * tx-flush-interval`` and a possible throughput improvement.
Very high traffic (``packet rate >> 32 / tx-flush-interval``) should experience
the average latency increase equal to ``32 / (2 * packet rate)``. Most send
batches in this case will contain the maximum number of packets (``32``).
A ``tx-burst-interval`` value of ``50`` microseconds has shown to provide a
good performance increase in a ``PHY-VM-PHY`` scenario on ``x86`` system for
interrupt-driven guests while keeping the latency increase at a reasonable
level:
https://mail.openvswitch.org/pipermail/ovs-dev/2017-December/341628.html
.. note::
Throughput impact of this option significantly depends on the scenario and
the traffic patterns. For example: ``tx-burst-interval`` value of ``50``
microseconds shows performance degradation in ``PHY-VM-PHY`` with bonded PHY
scenario while testing with ``256 - 1024`` packet flows:
https://mail.openvswitch.org/pipermail/ovs-dev/2017-December/341700.html
The average number of packets per output batch can be checked in PMD stats::
$ ovs-appctl dpif-netdev/pmd-stats-show
Limitations
------------
- Network Interface Firmware requirements: Each release of DPDK is
validated against a specific firmware version for a supported Network
Interface. New firmware versions introduce bug fixes, performance
improvements and new functionality that DPDK leverages. The validated
firmware versions are available as part of the release notes for
DPDK. It is recommended that users update Network Interface firmware
to match what has been validated for the DPDK release.
The latest list of validated firmware versions can be found in the `DPDK
release notes`_.
.. _DPDK release notes:
https://doc.dpdk.org/guides-24.11/rel_notes/release_24_11.html
- Upper bound MTU: DPDK device drivers differ in how the L2 frame for a
given MTU value is calculated e.g. i40e driver includes 2 x vlan headers in
MTU overhead, em driver includes 1 x vlan header, ixgbe driver does not
include a vlan header in overhead. Currently it is not possible for OVS
DPDK to know what upper bound MTU value is supported for a given device.
As such OVS DPDK must provision for the case where the L2 frame for a given
MTU includes 2 x vlan headers. This reduces the upper bound MTU value for
devices that do not include vlan headers in their L2 frames by 8 bytes e.g.
ixgbe devices upper bound MTU is reduced from 9710 to 9702. This work
around is temporary and is expected to be removed once a method is provided
by DPDK to query the upper bound MTU value for a given device.
- Flow Control: When using i40e devices (Intel(R) 700 Series) it is recommended
to set Link State Change detection to interrupt mode. Otherwise it has been
observed that using the default polling mode, flow control changes may not be
applied, and flow control states will not be reflected correctly.
The issue is under investigation, this is a temporary work around.
For information about setting Link State Change detection, refer to
:ref:`lsc-detection`.
Reporting Bugs
--------------
Report problems to bugs@openvswitch.org.
|