aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/methodology/test/reconfiguration.md
blob: a0678103d9fa6828f715e5edcf589d62c216fdc4 (plain)
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
---
title: "Reconfiguration"
weight: 8
---

# Reconfiguration

## Overview

Reconf tests are designed to measure the impact of VPP re-configuration
on data plane traffic.
While VPP takes some measures against the traffic being
entirely stopped for a prolonged time,
the immediate forwarding rate varies during the re-configuration,
as some configurations steps need the active dataplane worker threads
to be stopped temporarily.

As the usual methods of measuring throughput need multiple trial measurements
with somewhat long durations, and the re-configuration process can also be long,
finding an offered load which would result in zero loss
during the re-configuration process would be time-consuming.

Instead, reconf tests first find a througput value (lower bound for NDR)
without re-configuration, and then maintain that ofered load
during re-configuration. The measured loss count is then assumed to be caused
by the re-configuration process. The result published by reconf tests
is the effective blocked time, that is
the loss count divided by the offered load.

## Current Implementation

Each reconf suite is based on a similar MLRsearch performance suite.

MLRsearch parameters are changed to speed up the throughput discovery.
For example, PDR is not searched for, and the goal duration sum is shorter.
Contrary to usual NDR, exceed ratio is set to zero in reconf tests
as load stability is less important than attribution of losses.

The MLRsearch suite has to contain a configuration parameter
that can be scaled up, e.g. number of tunnels or number of service chains.
Currently, only increasing the scale is supported
as the re-configuration operation. In future, scale decrease
or other operations can be implemented.

The traffic profile is not changed, so the traffic present is processed
only by the smaller scale configuration. The added tunnels / chains
are not targetted by the traffic.

For the re-configuration, the same Robot Framework and Python libraries
are used, as were used in the initial configuration, with the exception
of the final calls that do not interact with VPP (e.g. starting
virtual machines) being skipped to reduce the test overall duration.

## Discussion

Robot Framework introduces a certain overhead, which may affect timing
of individual VPP API calls, which in turn may affect
the number of packets lost.

The exact calls executed may contain unnecessary info dumps, repeated commands,
or commands which change a value that do not need to be changed (e.g. MTU).
Thus, implementation details are affecting the results, even if their effect
on the corresponding MLRsearch suite is negligible.

The lower bound for NDR is the only value safe to be used when zero packets lost
are expected without re-configuration. But different suites show different
"jitter" in that value. For some suites, the lower bound is not tight,
allowing full NIC buffers to drain quickly between worker pauses.
For other suites, lower bound for NDR still has quite a large probability
of non-zero packet loss even without re-configuration.