<?xml version="1.0" encoding="us-ascii"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.2.9 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
<!ENTITY RFC2544 SYSTEM "https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.2544.xml">
<!ENTITY RFC8174 SYSTEM "https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8174.xml">
]>

<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>

<rfc ipr="trust200902" docName="draft-vpolak-mkonstan-mlrsearch-00" category="info">

  <front>
    <title>Multiple Loss Ratio Search for Packet Throughput (MLRsearch)</title>

    <author initials="M." surname="Konstantynowicz" fullname="Maciek Konstantynowicz" role="editor">
      <organization>Cisco Systems</organization>
      <address>
        <email>mkonstan@cisco.com</email>
      </address>
    </author>
    <author initials="V." surname="Polak" fullname="Vratko Polak" role="editor">
      <organization>Cisco Systems</organization>
      <address>
        <email>vrpolak@cisco.com</email>
      </address>
    </author>

    <date year="2018" month="October" day="22"/>

    <area>ops</area>
    <workgroup>Benchmarking Working Group</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<t>This document proposes changes to <xref target="RFC2544"></xref>, specifically to packet
throughput search methodology, by defining a new search algorithm
referred to as Multiple Loss Ratio search (MLRsearch for short). Instead
of relying on binary search with pre-set starting offered load, it
proposes a novel approach discovering the starting point in the initial
phase, and then searching for packet throughput based on defined packet
loss ratio (PLR) input criteria and defined final trial duration time.
One of the key design principles behind MLSsearch is minimizing the
total test duration and searching for multiple packet throughput rates
(each with a corresponding PLR) concurrently, instead of doing it
sequentially.</t>

<t>The main motivation behind MLRsearch is the new set of challenges and
requirements posed by NFV (Network Function Virtualization),
specifically software based implementations of NFV data planes. Using
<xref target="RFC2544"></xref> in the experience of the authors yields often not repetitive
and not replicable end results due to a large number of factors that are
out of scope for this draft. MLRsearch aims to address this chalenge and
define a common (standard?) way to evaluate NFV packet throughput
performance that takes into account varying characteristics of NFV
systems under test.</t>



    </abstract>


  </front>

  <middle>


<section anchor="terminology" title="Terminology">

<t><list style="symbols">
  <t>NDR - Non-Drop Rate, a packet throughput metric with Packet Loss Ratio
equal zero (a zero packet loss), expressed in packets-per-second
(pps). NDR packet throughput has an associated metric oftentimes
referred to as NDR bandwidth expressed in bits-per-second (bps), and
calculated as a product of:
  <list style="symbols">
      <t>NDR packet rate for specific packet (frame) size, and</t>
      <t>Packet (L2 frame size) size in bits plus any associated L1 overhead.</t>
    </list></t>
  <t>PLR - Packet Loss Ratio, a packet loss metric calculated as a ratio of
 (packets_transmitted - packets_received) to packets_transmitted, over
 the test trial duration.</t>
  <t>PDR - Partial-Drop Rate, a packet throughput metric with Packet Loss
Ratio greater than zero (a non-zero packet loss), expressed in
packets-per-second (pps). PDR packet throughput has an associated
metric oftentimes referred to as PDR bandwidth expressed in bits-per-
second (bps), and calculated as a product of:
  <list style="symbols">
      <t>PDR packet rate for specific packet (frame) size, and</t>
      <t>Packet (L2 frame size) size in bits plus any associated L1 overhead.</t>
    </list></t>
</list></t>

</section>
<section anchor="mlrsearch-background" title="MLRsearch Background">

<t>Multiple Loss Rate search (MLRsearch) is a packet throughput search
algorithm suitable for deterministic (as opposed to probabilistic)
systems. MLRsearch discovers multiple packet throughput rates in a
single search, each rate associated with a distinct Packet Loss Ratio
(PLR) criteria.</t>

<t>Two popular names for particular PLR criteria are Non-Drop Rate (NDR,
with PLR=0, zero packet loss) and Partial Drop Rate (PDR, with PLR&gt;0,
non-zero packet loss). MLRsearch discovers NDR and PDR in a single
search reducing required execution time compared to separate binary
searches for NDR and PDR. MLRsearch reduces execution time even further
by relying on shorter trial durations of intermediate steps, with only
the final measurements conducted at the specified final trial duration.
This results in the shorter overall search execution time when compared
to a standard NDR/PDR binary search, while guaranteeing the same or
similar results.
(TODO: Specify "standard" in the previous sentence.)</t>

<t>If needed, MLRsearch can be easily adopted to discover more throughput
rates with different pre-defined PLRs.</t>

<t>Unless otherwise noted, all throughput rates are <spanx style="emph">always</spanx> bi-directional
aggregates of two equal (symmetric) uni-directional packet rates
received and reported by an external traffic generator.</t>

</section>
<section anchor="mlrsearch-overview" title="MLRsearch Overview">

<t>The main properties of MLRsearch:</t>

<t><list style="symbols">
  <t>MLRsearch is a duration aware multi-phase multi-rate search algorithm.
  <list style="symbols">
      <t>Initial phase determines promising starting interval for the search.</t>
      <t>Intermediate phases progress towards defined final search criteria.</t>
      <t>Final phase executes measurements according to the final search
criteria.</t>
    </list></t>
  <t><spanx style="strong">Initial phase</spanx>:
  <list style="symbols">
      <t>Uses link rate as a starting transmit rate and discovers the Maximum
Receive Rate (MRR) used as an input to the first intermediate phase.</t>
    </list></t>
  <t><spanx style="strong">Intermediate phases</spanx>:
  <list style="symbols">
      <t>Start with initial trial duration (in the first phase) and converge
geometrically towards the final trial duration (in the final phase).</t>
      <t>Track two values for NDR and two for PDR.
      <list style="symbols">
          <t>The values are called (NDR or PDR) lower_bound and upper_bound.</t>
          <t>Each value comes from a specific trial measurement
(most recent for that transmit rate),
and as such the value is associated with that measurement's duration and loss.</t>
          <t>A bound can be invalid, for example if NDR lower_bound
has been measured with nonzero loss.</t>
          <t>Invalid bounds are not real boundaries for the searched value,
but are needed to track interval widths.</t>
          <t>Valid bounds are real boundaries for the searched value.</t>
          <t>Each non-initial phase ends with all bounds valid.</t>
        </list></t>
      <t>Start with a large (lower_bound, upper_bound) interval width and
geometrically converge towards the width goal (measurement resolution)
of the phase. Each phase halves the previous width goal.</t>
      <t>Use internal and external searches:
      <list style="symbols">
          <t>External search - measures at transmit rates outside the (lower_bound,
upper_bound) interval. Activated when a bound is invalid,
to search for a new valid bound by doubling the interval width.
It is a variant of <spanx style="verb">exponential search</spanx>_.</t>
          <t>Internal search - <spanx style="verb">binary search</spanx>_, measures at transmit rates within the
(lower_bound, upper_bound) valid interval, halving the interval width.</t>
        </list></t>
    </list></t>
  <t><spanx style="strong">Final phase</spanx> is executed with the final test trial duration, and the final
width goal that determines resolution of the overall search.
Intermediate phases together with the final phase are called non-initial phases.</t>
</list></t>

<t>The main benefits of MLRsearch vs. binary search include:</t>

<t><list style="symbols">
  <t>In general MLRsearch is likely to execute more search trials overall, but
less trials at a set final duration.</t>
  <t>In well behaving cases it greatly reduces (&gt;50%) the overall duration
compared to a single PDR (or NDR) binary search duration,
while finding multiple drop rates.</t>
  <t>In all cases MLRsearch yields the same or similar results to binary search.</t>
  <t>Note: both binary search and MLRsearch are susceptible to reporting
non-repeatable results across multiple runs for very bad behaving
cases.</t>
</list></t>

<t>Caveats:</t>

<t><list style="symbols">
  <t>Worst case MLRsearch can take longer than a binary search e.g. in case of
drastic changes in behaviour for trials at varying durations.</t>
</list></t>

</section>
<section anchor="sample-implementation" title="Sample Implementation">

<t>Following is a brief description of a sample MLRsearch implementation
based on the open-source code running in FD.io CSIT project as part of a
Continuous Integration / Continuous Development (CI/CD) framework.</t>

<section anchor="input-parameters" title="Input Parameters">

<t><list style="numbers">
  <t><spanx style="strong">maximum_transmit_rate</spanx> - maximum packet transmit rate to be used by
external traffic generator, limited by either the actual Ethernet
link rate or traffic generator NIC model capabilities. Sample
defaults: 2 * 14.88 Mpps for 64B 10GE link rate,
2 * 18.75 Mpps for 64B 40GE NIC maximum rate.</t>
  <t><spanx style="strong">minimum_transmit_rate</spanx> - minimum packet transmit rate to be used for
measurements. MLRsearch fails if lower transmit rate needs to be
used to meet search criteria. Default: 2 * 10 kpps (could be higher).</t>
  <t><spanx style="strong">final_trial_duration</spanx> - required trial duration for final rate
measurements. Default: 30 sec.</t>
  <t><spanx style="strong">initial_trial_duration</spanx> - trial duration for initial MLRsearch phase.
Default: 1 sec.</t>
  <t><spanx style="strong">final_relative_width</spanx> - required measurement resolution expressed as
(lower_bound, upper_bound) interval width relative to upper_bound.
Default: 0.5%.</t>
  <t><spanx style="strong">packet_loss_ratio</spanx> - maximum acceptable PLR search criteria for
PDR measurements. Default: 0.5%.</t>
  <t><spanx style="strong">number_of_intermediate_phases</spanx> - number of phases between the initial
phase and the final phase. Impacts the overall MLRsearch duration.
Less phases are required for well behaving cases, more phases
may be needed to reduce the overall search duration for worse behaving cases.
Default (2). (Value chosen based on limited experimentation to date.
More experimentation needed to arrive to clearer guidelines.)</t>
</list></t>

</section>
<section anchor="initial-phase" title="Initial phase">

<t><list style="numbers">
  <t>First trial measures at maximum rate and discovers MRR.
a. <spanx style="emph">in</spanx>: trial_duration = initial_trial_duration.
b. <spanx style="emph">in</spanx>: offered_transmit_rate = maximum_transmit_rate.
c. <spanx style="emph">do</spanx>: single trial.
d. <spanx style="emph">out</spanx>: measured loss ratio.
e. <spanx style="emph">out</spanx>: mrr = measured receive rate.</t>
  <t>Second trial measures at MRR and discovers MRR2.
a. <spanx style="emph">in</spanx>: trial_duration = initial_trial_duration.
b. <spanx style="emph">in</spanx>: offered_transmit_rate = MRR.
c. <spanx style="emph">do</spanx>: single trial.
d. <spanx style="emph">out</spanx>: measured loss ratio.
e. <spanx style="emph">out</spanx>: mrr2 = measured receive rate.</t>
  <t>Third trial measures at MRR2.
a. <spanx style="emph">in</spanx>: trial_duration = initial_trial_duration.
b. <spanx style="emph">in</spanx>: offered_transmit_rate = MRR2.
c. <spanx style="emph">do</spanx>: single trial.
d. <spanx style="emph">out</spanx>: measured loss ratio.</t>
</list></t>

</section>
<section anchor="non-initial-phases" title="Non-initial phases">

<t><list style="numbers">
  <t>Main loop:
a. <spanx style="emph">in</spanx>: trial_duration for the current phase.
   Set to initial_trial_duration for the first intermediate phase;
   to final_trial_duration for the final phase;
   or to the element of interpolating geometric sequence
   for other intermediate phases.
   For example with two intermediate phases, trial_duration
   of the second intermediate phase is the geometric average
   of initial_strial_duration and final_trial_duration.
b. <spanx style="emph">in</spanx>: relative_width_goal for the current phase.
   Set to final_relative_width for the final phase;
   doubled for each preceding phase.
   For example with two intermediate phases,
   the first intermediate phase uses quadruple of final_relative_width
   and the second intermediate phase uses double of final_relative_width.
c. <spanx style="emph">in</spanx>: ndr_interval, pdr_interval from the previous main loop iteration
   or the previous phase.
   If the previous phase is the initial phase, both intervals have
   lower_bound = MRR2, uper_bound = MRR.
   Note that the initial phase is likely to create intervals with invalid bounds.
d. <spanx style="emph">do</spanx>: According to the procedure described in point 2,
   either exit the phase (by jumping to 1.g.),
   or prepare new transmit rate to measure with.
e. <spanx style="emph">do</spanx>: Perform the trial measurement at the new transmit rate
   and trial_duration, compute its loss ratio.
f. <spanx style="emph">do</spanx>: Update the bounds of both intervals, based on the new measurement.
   The actual update rules are numerous, as NDR external search
   can affect PDR interval and vice versa, but the result
   agrees with rules of both internal and external search.
   For example, any new measurement below an invalid lower_bound
   becomes the new lower_bound, while the old measurement
   (previously acting as the invalid lower_bound)
   becomes a new and valid upper_bound.
   Go to next iteration (1.c.), taking the updated intervals as new input.
g. <spanx style="emph">out</spanx>: current ndr_interval and pdr_interval.
   In the final phase this is also considered
   to be the result of the whole search.
   For other phases, the next phase loop is started
   with the current results as an input.</t>
  <t>New transmit rate (or exit) calculation (for 1.d.):
  <list style="symbols">
      <t>If there is an invalid bound then prepare for external search:
      <list style="symbols">
          <t><spanx style="emph">If</spanx> the most recent measurement at NDR lower_bound transmit rate
had the loss higher than zero, then
the new transmit rate is NDR lower_bound
decreased by two NDR interval widths.</t>
          <t>Else, <spanx style="emph">if</spanx> the most recent measurement at PDR lower_bound
transmit rate had the loss higher than PLR, then
the new transmit rate is PDR lower_bound
decreased by two PDR interval widths.</t>
          <t>Else, <spanx style="emph">if</spanx> the most recent measurement at NDR upper_bound
transmit rate had no loss, then
the new transmit rate is NDR upper_bound
increased by two NDR interval widths.</t>
          <t>Else, <spanx style="emph">if</spanx> the most recent measurement at PDR upper_bound
transmit rate had the loss lower or equal to PLR, then
the new transmit rate is PDR upper_bound
increased by two PDR interval widths.</t>
        </list></t>
      <t>If interval width is higher than the current phase goal:
      <list style="symbols">
          <t>Else, <spanx style="emph">if</spanx> NDR interval does not meet the current phase width goal,
prepare for internal search. The new transmit rate is
(NDR lower bound + NDR upper bound) / 2.</t>
          <t>Else, <spanx style="emph">if</spanx> PDR interval does not meet the current phase width goal,
prepare for internal search. The new transmit rate is
(PDR lower bound + PDR upper bound) / 2.</t>
        </list></t>
      <t>Else, <spanx style="emph">if</spanx> some bound has still only been measured at a lower duration,
prepare to re-measure at the current duration (and the same transmit rate).
The order of priorities is:
      <list style="symbols">
          <t>NDR lower_bound,</t>
          <t>PDR lower_bound,</t>
          <t>NDR upper_bound,</t>
          <t>PDR upper_bound.</t>
        </list></t>
      <t><spanx style="emph">Else</spanx>, do not prepare any new rate, to exit the phase.
This ensures that at the end of each non-initial phase
all intervals are valid, narrow enough, and measured
at current phase trial duration.</t>
    </list></t>
</list></t>

</section>
</section>
<section anchor="known-implementations" title="Known Implementations">

<t>The only known working implementatin of MLRsearch is in Linux Foundation
FD.io CSIT project. https://wiki.fd.io/view/CSIT. https://git.fd.io/csit/.</t>

<section anchor="fdio-csit-implementation-deviations" title="FD.io CSIT Implementation Deviations">

<t>This document so far has been describing a simplified version of MLRsearch algorithm.
The full algorithm as implemented contains additional logic,
which makes some of the details (but not general ideas) above incorrect.
Here is a short description of the additional logic as a list of principles,
explaining their main differences from (or additions to) the simplified description,
but without detailing their mutual interaction.</t>

<t><list style="numbers">
  <t><spanx style="emph">Logarithmic transmit rate.</spanx>
In order to better fit the relative width goal,
the interval doubling and halving is done differently.
For example, the middle of 2 and 8 is 4, not 5.</t>
  <t><spanx style="emph">Optimistic maximum rate.</spanx>
The increased rate is never higher than the maximum rate.
Upper bound at that rate is always considered valid.</t>
  <t><spanx style="emph">Pessimistic minimum rate.</spanx>
The decreased rate is never lower than the minimum rate.
If a lower bound at that rate is invalid,
a phase stops refining the interval further (until it gets re-measured).</t>
  <t><spanx style="emph">Conservative interval updates.</spanx>
Measurements above current upper bound never update a valid upper bound,
even if drop ratio is low.
Measurements below current lower bound always update any lower bound
if drop ratio is high.</t>
  <t><spanx style="emph">Ensure sufficient interval width.</spanx>
Narrow intervals make external search take more time to find a valid bound.
If the new transmit increased or decreased rate would result in width
less than the current goal, increase/decrease more.
This can happen if the measurement for the other interval
makes the current interval too narrow.
Similarly, take care the measurements in the initial phase
create wide enough interval.</t>
  <t><spanx style="emph">Timeout for bad cases.</spanx>
The worst case for MLRsearch is when each phase converges to intervals
way different than the results of the previous phase.
Rather than suffer total search time several times larger
than pure binary search, the implemented tests fail themselves
when the search takes too long (given by argument <spanx style="emph">timeout</spanx>).</t>
</list></t>

</section>
</section>
<section anchor="iana-considerations" title="IANA Considerations">

<t>..</t>

</section>
<section anchor="security-considerations" title="Security Considerations">

<t>..</t>

</section>
<section anchor="acknowledgements" title="Acknowledgements">

<t>..</t>

</section>


  </middle>

  <back>

    <references title='Normative References'>

&RFC2544;
&RFC8174;


    </references>




  </back>

<!-- ##markdown-source:
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
ScLI6O14orXiUHqKBfHlWW+BwY/8+yB4FfpTT9TFKYle/0vxvj7C+/oxvEdY
e0S58ApNw31ry5JXsiaDcR4GyQXpECbBm9tFy5iD6THVw+ZDn7HT3GW8KBC4
SrQioQx9s8bSUg1Nu63v1WXiJxfx8+tHPp8Y7+j8NKIjJBB/zhYQIoswEhhz
F+5uy1gtTV177Gk6WUkTQTbc5RCtxoMgc3IqL+9Sfy3JDhqjwjZDpZsGOZKp
aP1K5plRMuHNdqJg08W47Cv158odqslExsvskQV+x88P4Xte6cilGo8jeV6t
3tqq+4zsgLYRuO45Hras1K5ta3/55MnB3tnVpsCBJ7SN9YRODU+3tg0Pc2/b
J9LYSMCNcaaJjB2wT79YhFxno5thryPUH/KVIE8kyfIgZbth2pSM7Yb9LeLJ
poM0hrVYgOxZYnj7p0Xt5+nLCDZsr5Vua/NFhnyUvpvE3xtg8wrJVWFaHj3M
KMkmxYpTW6RmmjZI1+6eclL+qgqYl/0pJjeywjidk/GgZ3K7rFvRRm4wnvC1
m0VmPtellm9H4UXbSOkaVwHzuPNDuVcESoMQGd0mrEuQWGRECSV69AUOIS+B
33HFwvqs86CFNBd767aaecp7RYkDWJ2RMiOZFevnJLWlzc2NjVVJGAVM3Odo
a6BfjNDs02SvgJWkMsPqI32hR02KE47J/B0NYt4FA3hBrz5bsLyey4jqexC/
l4Xo0fyKsf/IqMS4GQNsZWglcxoPx9MvvPzD4K7Fa+ghRsuWZZLKx50dmi5d
G+97nMKYbIzTkGyNcQpDsB6l9GWWxqb3+6fxSjdXdHA+vnU1r+X3+pZsOMri
sJp1FWINrwyY1ieho5jLKOsVKKVXWOD961JEeSHs3Wh5kc0nesEk8gVKQ+ms
00JODeGAt5rtpt8fgO+xnFWtjm6SgjXeNGKOCClehYCRPCU4RxeQTshs7VuO
Gcp3NJm1pmqnizBM8nuJBEOUID8zLW5k4i8bwLTbLK2/oqd9CHahETVKLQb1
5S8AjPTmwMPNUDTCf/S9OFkcmWZ6bKE9wCcRGKO2ymK0pObETkMeLABWwyQb
jv3JpKt7L1MzcbHpfT3HWudC0ORrPshyB33Pj1mTc8IyvqjfFz8KzKEldqCN
LwnBw04Xzxw/gsnkAglVWtSQAVhve4dhMYNOjAIpL4KZYaktrsp5ab0HKRMk
+v7asLndszqW1e5US5GJv9Ft73ZIu9i1tomykIp4w/M9Jd+o4bW/Rlwr3qpJ
MSfL78ypJCDS4pXn4To92ntDy3mM9y7MOxPd9CwgWklRs60ly6O17mYrUfys
FX6ezTlvuXr5/iUtZLDfi3F/JVsmBpK37cMjj1/mlNOUptiKhOVz+ireWud3
2f8BlygaTZk/AAA=

-->

</rfc>

