Update VPP_STABLE_VER files
[csit.git] / docs / content / methodology / overview / per_thread_resources.md
1 ---
2 title: "Per Thread Resources"
3 weight: 2
4 ---
5
6 # Per Thread Resources
7
8 CSIT test framework is managing mapping of the following resources per thread:
9
10 1. Cores, physical cores (pcores) allocated as pairs of sibling logical cores
11    (lcores) if server in HyperThreading/SMT mode, or as single lcores
12    if server not in HyperThreading/SMT mode. Note that if server's
13    processors are running in HyperThreading/SMT mode sibling lcores are
14    always used.
15 2. Receive Queues (RxQ), packet receive queues allocated on each
16    physical and logical interface tested.
17 3. Transmit Queues(TxQ), packet transmit queues allocated on each
18    physical and logical interface tested.
19
20 Approach to mapping per thread resources depends on the application/DUT
21 tested (VPP or DPDK apps) and associated thread types, as follows:
22
23 1. Data-plane workers, used for data-plane packet processing, when no
24    feature workers present.
25
26    - Cores: data-plane workers are typically tested in 1, 2 and 4 pcore
27      configurations, running on single lcore per pcore or on sibling
28      lcores per pcore. Result is a set of {T}t{C}c thread-core
29      configurations, where{T} stands for a total number of threads
30      (lcores), and {C} for a total number of pcores. Tested
31      configurations are encoded in CSIT test case names,
32      e.g. "1c", "2c", "4c", and test tags "2T1C" (or "1T1C"), "4T2C"
33      (or "2T2C"), "8T4C" (or "4T4C").
34    - Interface Receive Queues (RxQ): as of CSIT-2106 release, number of
35      RxQs used on each physical or virtual interface is equal to the
36      number of data-plane workers. In other words each worker has a
37      dedicated RxQ on each interface tested. This ensures packet
38      processing load to be equal for each worker, subject to RSS flow
39      load balancing efficacy. Note: Before CSIT-2106 total number of
40      RxQs across all interfaces of specific type was equal to the
41      number of data-plane workers.
42    - Interface Transmit Queues (TxQ): number of TxQs used on each
43      physical or virtual interface is equal to the number of data-plane
44      workers. In other words each worker has a dedicated TxQ on each
45      interface tested.
46    - Applies to VPP and DPDK Testpmd and L3Fwd.
47
48 2. Data-plane and feature workers (e.g. IPsec async crypto workers), the
49    latter dedicated to specific feature processing.
50
51    - Cores: data-plane and feature workers are tested in 2, 3 and 4
52      pcore configurations, running on single lcore per pcore or on
53      sibling lcores per pcore. This results in a two sets of
54      thread-core combinations separated by "-", {T}t{C}c-{T}t{C}c, with
55      the leading set denoting total number of threads (lcores) and
56      pcores used for data-plane workers, and the trailing set denoting
57      total number of lcores and pcores used for feature workers.
58      Accordingly, tested configurations are encoded in CSIT test case
59      names, e.g. "1c-1c", "1c-2c", "1c-3c", and test tags "2T1C_2T1C"
60      (or "1T1C_1T1C"), "2T1C_4T2C" (or "1T1C_2T2C"), "2T1C_6T3C"
61      (or "1T1C_3T3C").
62    - RxQ and TxQ: no RxQs and no TxQs are used by feature workers.
63    - Applies to VPP only.
64
65 3. Management/main worker, control plane and management.
66
67    - Cores: single lcore.
68    - RxQ: not used (VPP default behaviour).
69    - TxQ: single TxQ per interface, allocated but not used (VPP default
70      behaviour).
71    - Applies to VPP only.
72
73 ## VPP Thread Configuration
74
75 Mapping of cores and RxQs to VPP data-plane worker threads is done in
76 the VPP startup.conf during test suite setup:
77
78 1. `corelist-workers <list_of_cores>`: List of logical cores to run VPP
79    data-plane workers and feature workers. The actual lcores'
80    allocations depends on HyperThreading/SMT server configuration and
81    per test core configuration.
82
83    - For tests without feature workers, by default, all CPU cores
84      configured in startup.conf are used for data-plane workers.
85    - For tests with feature workers, CSIT code distributes lcores across
86      data-plane and feature workers.
87
88 2. `num-rx-queues <value>`: Number of Rx queues used per interface.
89
90 Mapping of TxQs to VPP data-plane worker threads uses the default VPP
91 setting of one TxQ per interface per data-plane worker.
92
93 ## DPDK Thread Configuration
94
95 Mapping of cores and RxQs to DPDK Testpmd/L3Fwd data-plane worker
96 threads is done in the startup CLI:
97
98 1. `-l <list_of_cores>` - List of logical cores to run DPDK
99    application.
100 2. `nb-cores=<N>` - Number of forwarding cores.
101 3. `rxq=<N>` - Number of Rx queues used per interface.