Update VPP_STABLE_VER files
[csit.git] / docs / content / methodology / reconfiguration_tests.md
1 ---
2 title: "Reconfiguration Tests"
3 weight: 16
4 ---
5
6 # Reconfiguration Tests
7
8 ## Overview
9
10 Reconf tests are designed to measure the impact of VPP re-configuration
11 on data plane traffic.
12 While VPP takes some measures against the traffic being
13 entirely stopped for a prolonged time,
14 the immediate forwarding rate varies during the re-configuration,
15 as some configurations steps need the active dataplane worker threads
16 to be stopped temporarily.
17
18 As the usual methods of measuring throughput need multiple trial measurements
19 with somewhat long durations, and the re-configuration process can also be long,
20 finding an offered load which would result in zero loss
21 during the re-configuration process would be time-consuming.
22
23 Instead, reconf tests first find a througput value (lower bound for NDR)
24 without re-configuration, and then maintain that ofered load
25 during re-configuration. The measured loss count is then assumed to be caused
26 by the re-configuration process. The result published by reconf tests
27 is the effective blocked time, that is
28 the loss count divided by the offered load.
29
30 ## Current Implementation
31
32 Each reconf suite is based on a similar MLRsearch performance suite.
33
34 MLRsearch parameters are changed to speed up the throughput discovery.
35 For example, PDR is not searched for, and the final trial duration is shorter.
36
37 The MLRsearch suite has to contain a configuration parameter
38 that can be scaled up, e.g. number of tunnels or number of service chains.
39 Currently, only increasing the scale is supported
40 as the re-configuration operation. In future, scale decrease
41 or other operations can be implemented.
42
43 The traffic profile is not changed, so the traffic present is processed
44 only by the smaller scale configuration. The added tunnels / chains
45 are not targetted by the traffic.
46
47 For the re-configuration, the same Robot Framework and Python libraries
48 are used, as were used in the initial configuration, with the exception
49 of the final calls that do not interact with VPP (e.g. starting
50 virtual machines) being skipped to reduce the test overall duration.
51
52 ## Discussion
53
54 Robot Framework introduces a certain overhead, which may affect timing
55 of individual VPP API calls, which in turn may affect
56 the number of packets lost.
57
58 The exact calls executed may contain unnecessary info dumps, repeated commands,
59 or commands which change a value that do not need to be changed (e.g. MTU).
60 Thus, implementation details are affecting the results, even if their effect
61 on the corresponding MLRsearch suite is negligible.
62
63 The lower bound for NDR is the only value safe to be used when zero packets lost
64 are expected without re-configuration. But different suites show different
65 "jitter" in that value. For some suites, the lower bound is not tight,
66 allowing full NIC buffers to drain quickly between worker pauses.
67 For other suites, lower bound for NDR still has quite a large probability
68 of non-zero packet loss even without re-configuration.