<?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.5.10 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

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

<rfc ipr="trust200902" docName="draft-bonaventure-iccrg-schedulers-02" category="exp">

  <front>
    <title abbrev="Multipath schedulers">Multipath schedulers</title>

    <author initials="O." surname="Bonaventure" fullname="Olivier Bonaventure">
      <organization>UCLouvain</organization>
      <address>
        <email>Olivier.Bonaventure@uclouvain.be</email>
      </address>
    </author>
    <author initials="M." surname="Piraux" fullname="Maxime Piraux">
      <organization>UCLouvain</organization>
      <address>
        <email>Maxime.Piraux@uclouvain.be</email>
      </address>
    </author>
    <author initials="Q." surname="De Coninck" fullname="Quentin De Coninck">
      <organization>UCLouvain</organization>
      <address>
        <email>quentin.deconinck@uclouvain.be</email>
      </address>
    </author>
    <author initials="M." surname="Baerts" fullname="Matthieu Baerts">
      <organization>Tessares</organization>
      <address>
        <email>Matthieu.Baerts@tessares.net</email>
      </address>
    </author>
    <author initials="C." surname="Paasch" fullname="Christoph Paasch">
      <organization>Apple</organization>
      <address>
        <email>cpaasch@apple.com</email>
      </address>
    </author>
    <author initials="M." surname="Amend" fullname="Markus Amend">
      <organization>Deutsche Telekom</organization>
      <address>
        <email>markus.amend@telekom.de</email>
      </address>
    </author>

    <date year="2021" month="October" day="25"/>

    <area>IRTF</area>
    <workgroup>ICCRG Working Group</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<t>This document proposes a series of abstract packet schedulers for
multipath transport protocols equipped with a congestion controller.</t>



    </abstract>


  </front>

  <middle>


<section anchor="intro"><name>Introduction</name>

<t>The Internet was designed under the implicit assumption that hosts are
equipped with a single network interface while routers are equipped with several
ones. Under this assumption, an Internet host is usually
identified by the IP address of its network interface.</t>

<t>This assumption does not hold anymore today for two reasons. First,
a growing fraction of the Internet hosts are equipped with several network
interfaces, usually through different datalink networks. These multihomed
hosts are reachable via different IP addresses. Second, a growing
fraction of the hosts that are attached through a single network interface are
dual-stack and are thus reachable over both IPv4 and IPv6.</t>

<t>Several Internet transport protocols have been extended to leverage the
different paths that are exposed on such hosts: Multipath TCP <xref target="RFC6824"/>, the
load sharing extensions to SCTP <xref target="I-D.tuexen-tsvwg-sctp-multipath"/>, Multipath
DCCP <xref target="I-D.amend-tsvwg-multipath-dccp"/> and
Multipath QUIC <xref target="I-D.deconinck-quic-multipath"/>. These multipath transport
protocols differ in the way they are organized and exchange control information
and user data. However, they all include algorithms to handle three problems
that any multipath transport protocol needs to solve:</t>

<t><list style="symbols">
  <t>Congestion controller</t>
  <t>Path manager</t>
  <t>Packet scheduler</t>
  <t>Packet re-assembly</t>
</list></t>

<t>From a congestion control viewpoint, the main concern for a multipath transport
protocol is that a multipath connection should not be unfair to single-path
transport connections that share a common bottleneck. This problem can be solved
by coupling the congestion windows of the different paths. The solution proposed
in <xref target="RFC6356"/> is applicable to any transport protocol. Beside providing fairness,
congestion control can also be a valuable input for different kind of traffic
distribution algorithm within a packet scheduler. Typically metrics like RTT and
available capacity can be derived.</t>

<t>A multipath transport protocol uses different flows during the lifetime of a
connection. The Path Manager contains the logic that regulates the
creation/deletion of these flows. This logic usually depends on the
requirements of the application that uses the multipath transport. Some
applications use multipath in failover situations. In this case, the connection
can use one path and the path manager can create another path when the primary
one fails. An application that wishes to share its load among different paths
can request the path manager to establish different paths in order to
simultaneously use them during the connection. Many path managers have been
proposed in the literature <xref target="CONEXT15"/>, but these are outside the scope of this
document.</t>

<t>The packet scheduler is the generic term for the algorithm that selects the
path that will be used to transmit each packet on a multipath connection. This
logic is obviously only useful when there are at least two active paths for
a given multipath transport connection. A variety of packet schedulers have
been proposed in the literature <xref target="ACMCS14"/> and implemented in multipath
transport protocols. Experience with multipath transport protocols shows that
the packet scheduler can have a huge impact on the performance achieved by such
protocols.</t>

<t>Packet re-assembly or re-ordering in multipath transport has the functionality
to equalize the effect of packet scheduling across paths with different
characteristics and restore the original packet order to a certain extent. Obviously,
packet re-assembly is the counterpart of packet scheduling and located at the
far end of the multipath transport. However, packet scheduling schemes exists
which render the re-assembly superfluous or lowering at least its effort.</t>

<t>In this document, we document a series of multipath packet schedulers that
are known to provide performance that matches well the requirements of specific
applications. To describe these packet schedulers, we assume an
abstract transport that is briefly presented in <xref target="abstract"/>. In <xref target="challenges"/>
we describe the challenges and constraints around a multipath scheduler.
Finally, we describe the different schedulers in <xref target="schedulers"/>. To keep the
description as simple and intuitive as possible, we assume here multipath
connections that are composed of two paths, a frequent deployment scenario for
multipath transport.
This does not restrict the proposed schedulers to using only two paths.
Implementations are encouraged to support more than 2 paths. We leave the
discussion on how to adapt these abstract schedulers to concrete multipath
transport protocols in future drafts.</t>

</section>
<section anchor="abstract"><name>An abstract multipath transport protocol</name>

<t>For simplicity, we assume a multipath transport protocol which can send packets
over different paths. Some protocols such as Multipath TCP <xref target="RFC6824"/> support
active and backup paths. We do not assume this in this
document and leave the impact of these active/backup paths in specific
documents.</t>

<t>Furthermore, we assume that there are exactly two active paths for
the presentation of the packet schedulers. We consider that a path is active as
long as it supports the transmission of packets. Meaning, A Multipath TCP
subflow TCP segment with the FIN or RST flags set is not considered as an active
path.
Other constraints are possible on whether or not a path is active. These are
specific to the scheduler and vary depending on the goal of the scheduler. An
example of these is that when a path has experienced a certain number N of
retransmission timeouts, the path can be considered inactive.</t>

<t>We assume that the transport protocol maintains one congestion controller per
path as in <xref target="RFC6356"/>. We do not assume a specific congestion controller,
but assume that it can be queried by the packet scheduler to verify whether
a packet of length l would be blocked or not by the congestion control scheme.
A window-based congestion controller such as <xref target="RFC6356"/> can block a packet
from being transmitted for some time when its congestion window is full. The
same applies to a rate-based congestion controller although the latter could
indicate when the packet could be accepted while the former cannot.</t>

<t>We assume that the multipath transport protocol maintains some state at the
connection level and at the path level. On both level, the multipath
transport protocol will maintain send and receive windows, and a Maximum
Segment Size that is negotiated at connection establishment.</t>

<t>It may also contain some information that is specific to the
application (e.g. total amount of data sent or received) and information about
non-active flows. At the path level, we expect that the multipath transport
protocol will maintain an accurate estimation of the round-trip-time over that
path, possibly a send/receive window, per path MTU information, the state of the
congestion controller, and optionally information that is specific to the
application or the packet scheduler (e.g. priority for one path over another
one).</t>

</section>
<section anchor="challenges"><name>Packet scheduling challenges</name>

<t>Packet scheduling tries to balance different quality of service goals with
different constraints of the paths. The balance depends on which of the goals
or constraints is the primary factor for the experience the application is
aiming for. In the following we list these goals and constraints and conclude
by how they can influence each other.</t>

<t>Each path can be subject to a different cost when transmitting data. For example,
a path can introduce a per-byte monetary cost for the transmission (e.g., metered
cellular link). Another cost can be the power consumption when transmitting or
receiving data. These costs are imposing restrictions on when a path can be used
compared to the lower-cost path.</t>

<t>A goal for many applications is to reduce the latency of their transaction. With
multiple paths, each path can have a significantly different latency compared to
the other paths. It is thus crucial to schedule the traffic on a path such that
the latency requirements of the application are satisfied.</t>

<t>Achieving high throughput is another goal of many applications. Streaming applications
often require a minimum bit rate to sustain playback. The scheduler should try to
achieve this bit rate to allow for a flawless streaming experience. Beyond that,
adaptive streaming requires also a more stable throughput experience to ensure
that the bit rate of the video stream is consistent. When sending traffic
over multiple paths the bit rate can experience more variance and thus the
scheduler for such a streaming application needs to take precautions to ensure
a smooth experience.</t>

<t>Finally, transport protocols impose a receive-window that signals to the sender
how much data the application is willing to receive. When the paths have a large
latency difference, a multipath transport can quickly become receive-window limited.
This limitation comes from the fact that a packet might have been sent on a
high-latency path. If the transport imposes in-order delivery of the data, the
receiver needs to wait to receive this packet over the high-latency path before
providing it to the application. The sender will thus become receive-window limited
and may end up under-utilizing the low-latency path. This can become a major
challenge when trying to achieve high throughput.</t>

<t>All of these quality of service goals and constraints need to be balanced against
each other. A scheduler might decide to trade latency for higher throughput. Or
reduce the throughput with the goal of reducing the cost.</t>

</section>
<section anchor="schedulers"><name>Packet schedulers</name>

<t>The packet scheduler is executed every time a packet needs to be transmitted
by the multipath transport protocol. A packet scheduler can consider three
different types of packets:</t>

<t><list style="symbols">
  <t>packets that carry new user data</t>
  <t>packets that carry previously transmitted user data</t>
  <t>packets that only carry control information (e.g., acknowledgements, address advertisements)</t>
</list></t>

<t>In Multipath TCP, the packet scheduler is only used for packets that carry data. Multipath TCP will typically return acknowledgements on the same path as the one over which data packets were
received. For Multipath QUIC, the situation is different since Multipath QUIC
can acknowledge over one path data that was previously received over another path.
In Multipath TCP, this is only partially possible. The subflow level
acknowledgements must be sent on the subflow where the data was received while
the data-level acknowledgements can be sent over any subflow.</t>

<t>This document uses the Python language to represent multipath schedulers. A
multipath scheduler is represented as a Python function. This function takes the
length of the next packet to schedule as argument and returns the path on which
it will be send. A path is represented as a Python class with the following
attributes:</t>

<t><list style="symbols">
  <t>srtt: The smoothed RTT of the path <xref target="RFC6298"/>.</t>
  <t>cc_state: The state of the congestion controller, i.e. either slow_start,
congestion_avoidance or recovery.</t>
  <t>blocked(l): A function indicating whether a packet of length l would be
rejected by the congestion controller.</t>
</list></t>

<t>The schedulers presented can be executed in a simulator <xref target="MultipathSim"/>
implementing the abstract multipath protocol presented in <xref target="abstract"/>. It can
be used to simulate a file transfer between a client and a server over multiple
paths.</t>

<section anchor="round-robin"><name>Round-Robin</name>

<t>We use the Round-Robin scheduler as a simple example to illustrate how a packet
scheduler can be specified, but we do not recommend its usage. Experiments with
Multipath TCP <xref target="ACMCS14"/> indicate that it does not provide good performance.</t>

<t>This packet scheduler uses one additional state at the connection level:
last_path. This stores the identifier of the last path that was used to send a
packet. The scheduler is defined by the code shown in <xref target="fig-rr"/>.</t>

<figure title="A simple Round Robin scheduler" anchor="fig-rr"><artwork><![CDATA[
class RoundRobin(Scheduler):
 """ Chooses an available path in a round-robin manner. """
 last_path: Optional[Path] = None

 def schedule(self, packet_len: int):
  if self.last_path in self.paths:
      next_idx = self.paths.index(self.last_path) + 1
  else:
      next_idx = 0
  sorted_paths = self.paths[next_idx:] + self.paths[:next_idx]
  for p in sorted_paths:
      if not p.blocked(packet_len):
          self.last_path = p
          return p
]]></artwork></figure>

<t>This scheduler does not distinguish between the different types of packets. It
iterates over the available paths and sends over the ones whose congestion
window is open.</t>

</section>
<section anchor="weighted-round-robin"><name>Weighted Round-Robin</name>

<t>The Weighted Round-Robin scheduler is a more advanced version of the Round-Robin
scheduler. It allows specifying a particular distribution of paths. This can be
used to non-uniformly spread packets over paths.</t>

<t>This packet scheduler adds two states:</t>

<t><list style="symbols">
  <t>distribution: A list containing the distribution of paths to consider. Paths
to which more importance is given will be present several times in the list.
The ordering of the list allows to choose whether interleaved or burst sending
is preferred.</t>
  <t>last_idx: It stores the index in the distribution of the last path used to
send a packet.</t>
</list></t>

<figure title="A Weighted Round Robin scheduler" anchor="fig-wrr"><artwork><![CDATA[
class WeightedRoundRobin(Scheduler):
 """ Chooses an available path in a following a fixed distribution. """
 distribution: List[Path]
 last_idx: int = -1

 def schedule(self, packet_len: int) -> Optional[Path]:
     next_idx = (self.last_idx + 1) % len(self.distribution)
     sorted_paths = self.distribution[next_idx:]
                    + self.distribution[:next_idx]
        for i, p in enumerate(sorted_paths):
            if not p.blocked(packet_len):
                self.last_idx =
                   (self.last.idx + i) % len(self.distribution)
                return p
]]></artwork></figure>

<t>This scheduler does not distinguish between the different types of packets. It
iterates over the available paths following the given distribution and sends
over the ones whose congestion window is open. A variant of this algorithm
could maintain a deficit per path and consider the length of packets when
distributing them.</t>

</section>
<section anchor="strict-priority"><name>Strict Priority</name>

<t>The Strict Priority scheduler&#39;s aim is to select paths based on a priority list.
Some paths might go through networks that are more expensive to use than others.
Then the idea is to select the path with the highest priority if it is available
before looking at others by priority. This scheduler is described by the code
shown in <xref target="fig-strict-prio"/>.</t>

<figure title="A simple Strict Priority scheduler" anchor="fig-strict-prio"><artwork><![CDATA[
class StrictPriority(Scheduler):
 """ Chooses the first available path in a priority list of paths. """

 def schedule(self, packet_len: int):
     for p in sorted(self.paths,
                     key=lambda p: p.priority, reverse=True):
         if not p.blocked(packet_len):
             return p
]]></artwork></figure>

<t>This scheduler can face performance issues if, compared to others, paths with
high priority accept a lot of data but delivered packets with a high latency.
When the path is experiencing bufferbloat, the receiver has to store packets for
a long time in its buffers to ensure an in-order delivery. It
is then recommended to cover these cases in the scheduler implementation with
the help of the congestion control algorithm.</t>

</section>
<section anchor="rtt-threshold"><name>Round-Trip-Time Threshold</name>

<t>The Round-Trip-Time Threshold scheduler selects the first available path with a
smoothed round-trip-time below a certain threshold. The goal is to keep the RTT
of the multipath connection to a small value and avoid having the whole
connection impacted by &quot;bad&quot; paths. A prototype is shown in
<xref target="fig-rtt-threshold"/>.</t>

<figure title="A simple Round-Trip-Time Threshold scheduler" anchor="fig-rtt-threshold"><artwork><![CDATA[
@dataclass
class RTTThreshold(Scheduler):
 """ Chooses the first available path below a certain RTT threshold. """
 threshold: float

 def schedule(self, packet_len: int):
   for p in self.paths:
      if p.srtt < self.threshold and not p.blocked(packet_len):
         return p
]]></artwork></figure>

<t>This kind of protection can of course be added to other existing schedulers.</t>

</section>
<section anchor="lowest-rtt"><name>Lowest Round-Trip-Time First</name>

<t>The Lowest round-trip-time first scheduler&#39;s goal is to minimize latency for
short flows while at the same time achieving high throughput for long flows <xref target="ACMCS14"/>.
To handle the latency differences across the paths when being limited by the
receive-window, this scheduler deploys a fast reinjection mechanism to quickly
recover from the head-of-line blocking.</t>

<t>At each round, the scheduler iterates over the list of paths that are eligible
for transmission. To decide whether or not a path is eligible, a few conditions
need to be satisfied:</t>

<t><list style="symbols">
  <t>The congestion window needs to provide enough space for the segment</t>
  <t>The path is not in fast-recovery or experiencing retransmission timeouts</t>
</list></t>

<t>Among all the eligible paths, the scheduler will choose the path with the
lowest RTT and transmit the segment with the new data on that path.
<xref target="fig-simple-low-rtt"/> illustrates a simple lowest RTT scheduler which does not
include fast reinjections.</t>

<figure title="A simple Lowest RTT First scheduler" anchor="fig-simple-low-rtt"><artwork><![CDATA[
class LowestRTTFirst(Scheduler):
 """ Chooses the first available path with the lowest RTT. """

 def schedule(self, packet_len: int):
  # Sort paths by ascending SRTT
  for p in sorted(self.paths, key=lambda path: path.srtt):
   if not p.blocked(packet_len) \
      and p.cc_state != 'recovery':
         return p
]]></artwork></figure>

<t>To handle head-of-line blocking situations when the paths have a large delay
difference the scheduler uses a strategy of opportunistic retransmission and
path penalization as described in <xref target="NSDI12"/>.</t>

<t>Opportunistic retransmission kicks in whenever a path is eligible for transmission
but the receive-window advertised by the receiver prevents the sender from transmitting
new data. In that case the sender can transmit previously transmitted data over the
eligible path. To overcome the head-of-line blocking the sender will thus transmit
the packet at the head of the transmission queue over this faster path (if it
hasn&#39;t been transmitted on this particular path yet). This packet has thus a
chance to quickly reach the receiver and fill the hole created by the head-of-line
blocking.</t>

<t>Whenever the previously mentioned mechanism kicks in, it is and indication that
the path&#39;s round-trip-time is too high to allow the path with the lower RTT to
fully use its capacity. We thus should reduce the transmission rate on this path.
This mechanism is called penalization and is achieved by dividing the congestion
window by 2.</t>

</section>
<section anchor="combination-of-schedulers-type-priority-and-lowest-round-trip-time-first"><name>Combination of schedulers type: Priority and Lowest round-trip-time first</name>

<t>Combining some types of schedulers can be a way to address some use cases. For
example, a scheduler using the priority and the round-trip-time attributes can
be used to give more priorities to some links having a lower cost (e.g. fixed
vs. mobile accesses) while still being able to benefit from the advantages of
the &quot;Lowest RTT First&quot; scheduler described in <xref target="lowest-rtt"/>. A prototype of
this &quot;hybrid&quot; scheduler is shown in <xref target="fig-priority-and-lowest-rtt-first"/>.</t>

<figure title="A scheduler combining priority and RTT attributes" anchor="fig-priority-and-lowest-rtt-first"><artwork><![CDATA[
class PriorityAndLowestRTTFirst(Scheduler):
 """ Chooses the first available path with """
 """ the highest priority and then the lowest RTT. """

 def schedule(self, packet_len: int):
    # Sort paths by ascending priority (2nd sort)
    # and then ascending SRTT (1st sort)
    paths = sorted(self.paths, key=lambda path: path.srtt)
    paths = sorted(paths, key=lambda path: path.priority, reverse=True)
    for p in paths:
      if not p.blocked(packet_len)
         and p.cc.state is not CCState.recovery:
           return p
]]></artwork></figure>

<t>Combining some properties can have new undesired effects. In the case presented
here, paths with a higher priority but also a higher RTT can affect performances
compared to a setup having a scheduler not looking at the priority but only the
round-trip-time. If paths with a higher priority are used first whatever the
network conditions are on these paths, it is normal to sacrifice the total
bandwidth capacity but fully use the capacity of these links with a higher
priority. If the paths with a lower priority are seen as extra capacity that can
be used only when the other links are congested, it is fine if they are not
fully used when the sender is limited by the global sending window of the
multipath connection.</t>

<t>For this kind of scheduler, it could be interesting to also associate the
benefits associated to a &quot;Round-Trip-Time Threshold&quot; scheduler described in
<xref target="rtt-threshold"/>. This scheduler prevents being too impacted by links having a
higher priority but a very high RTT while other paths, with a lower priority and
a lower RTT, can be used. It is a matter of qualifying what is important:
maximizing the use of paths over reducing the latency and probably the total
bandwidth as well if the sender and/or the receiver are limited by congestion
windows.</t>

<t>It is also important to note that the penalization mechanism described in the
&quot;Lowest round-trip-time first&quot; scheduler in <xref target="lowest-rtt"/> also needs to take
into account the priority. If the goal is to maximize the use of some links over
 others, links with a higher priority cannot be penalized over the ones with a
lower priority. The consequence of this would be that links with higher priority
 are under used due to the penalization.</t>

<figure title="A simple figure" anchor="fig-ascii"><artwork><![CDATA[
ASCII figure

]]></artwork></figure>

</section>
</section>


  </middle>

  <back>


    <references title='Informative References'>





<reference anchor='RFC6824' target='https://www.rfc-editor.org/info/rfc6824'>
<front>
<title>TCP Extensions for Multipath Operation with Multiple Addresses</title>
<author fullname='A. Ford' initials='A.' surname='Ford'><organization/></author>
<author fullname='C. Raiciu' initials='C.' surname='Raiciu'><organization/></author>
<author fullname='M. Handley' initials='M.' surname='Handley'><organization/></author>
<author fullname='O. Bonaventure' initials='O.' surname='Bonaventure'><organization/></author>
<date month='January' year='2013'/>
<abstract><t>TCP/IP communication is currently restricted to a single path per connection, yet multiple paths often exist between peers.  The simultaneous use of these multiple paths for a TCP/IP session would improve resource usage within the network and, thus, improve user experience through higher throughput and improved resilience to network failure.</t><t>Multipath TCP provides the ability to simultaneously use multiple paths between peers.  This document presents a set of extensions to traditional TCP to support multipath operation.  The protocol offers the same type of service to applications as TCP (i.e., reliable bytestream), and it provides the components necessary to establish and use multiple TCP flows across potentially disjoint paths.  This  document defines an Experimental Protocol for the Internet community.</t></abstract>
</front>
<seriesInfo name='RFC' value='6824'/>
<seriesInfo name='DOI' value='10.17487/RFC6824'/>
</reference>



<reference anchor='RFC6356' target='https://www.rfc-editor.org/info/rfc6356'>
<front>
<title>Coupled Congestion Control for Multipath Transport Protocols</title>
<author fullname='C. Raiciu' initials='C.' surname='Raiciu'><organization/></author>
<author fullname='M. Handley' initials='M.' surname='Handley'><organization/></author>
<author fullname='D. Wischik' initials='D.' surname='Wischik'><organization/></author>
<date month='October' year='2011'/>
<abstract><t>Often endpoints are connected by multiple paths, but communications are usually restricted to a single path per connection.  Resource usage within the network would be more efficient were it possible for these multiple paths to be used concurrently.  Multipath TCP is a proposal to achieve multipath transport in TCP.</t><t>New congestion control algorithms are needed for multipath transport protocols such as Multipath TCP, as single path algorithms have a series of issues in the multipath context.  One of the prominent problems is that running existing algorithms such as standard TCP independently on each path would give the multipath flow more than its fair share at a bottleneck link traversed by more than one of its subflows.  Further, it is desirable that a source with multiple paths available will transfer more traffic using the least congested of the paths, achieving a property called &quot;resource pooling&quot; where a bundle of links effectively behaves like one shared link with bigger capacity.  This would increase the overall efficiency of the network and also its robustness to failure.</t><t>This document presents a congestion control algorithm that couples the congestion control algorithms running on different subflows by linking their increase functions, and dynamically controls the overall aggressiveness of the multipath flow.  The result is a practical algorithm that is fair to TCP at bottlenecks while moving traffic away from congested links.  This document defines an Experimental  Protocol for the Internet community.</t></abstract>
</front>
<seriesInfo name='RFC' value='6356'/>
<seriesInfo name='DOI' value='10.17487/RFC6356'/>
</reference>



<reference anchor='RFC6298' target='https://www.rfc-editor.org/info/rfc6298'>
<front>
<title>Computing TCP's Retransmission Timer</title>
<author fullname='V. Paxson' initials='V.' surname='Paxson'><organization/></author>
<author fullname='M. Allman' initials='M.' surname='Allman'><organization/></author>
<author fullname='J. Chu' initials='J.' surname='Chu'><organization/></author>
<author fullname='M. Sargent' initials='M.' surname='Sargent'><organization/></author>
<date month='June' year='2011'/>
<abstract><t>This document defines the standard algorithm that Transmission Control Protocol (TCP) senders are required to use to compute and manage their retransmission timer.  It expands on the discussion in Section 4.2.3.1 of RFC 1122 and upgrades the requirement of supporting the algorithm from a SHOULD to a MUST.  This document obsoletes RFC 2988.   [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6298'/>
<seriesInfo name='DOI' value='10.17487/RFC6298'/>
</reference>


<reference anchor='I-D.tuexen-tsvwg-sctp-multipath'>
   <front>
      <title>Load Sharing for the Stream Control Transmission Protocol (SCTP)</title>
      <author fullname='Paul D. Amer'>
	 <organization>University of Delaware</organization>
      </author>
      <author fullname='Martin Becke'>
	 <organization>HAW Hamburg</organization>
      </author>
      <author fullname='Thomas Dreibholz'>
	 <organization>SimulaMet</organization>
      </author>
      <author fullname='Nasif Ekiz'>
	 <organization>University of Delaware</organization>
      </author>
      <author fullname='Janardhan Iyengar'>
	 <organization>Franklin and Marshall College</organization>
      </author>
      <author fullname='Preethi Natarajan'>
	 <organization>Cisco Systems</organization>
      </author>
      <author fullname='Randall R. Stewart'>
	 <organization>Netflix</organization>
      </author>
      <author fullname='Michael Tuexen'>
	 <organization>Muenster Univ. of Appl. Sciences</organization>
      </author>
      <date day='9' month='August' year='2021'/>
      <abstract>
	 <t>   The Stream Control Transmission Protocol (SCTP) supports multi-homing
   for providing network fault tolerance.  However, mainly one path is
   used for data transmission.  Only timer-based retransmissions are
   carried over other paths as well.

   This document describes how multiple paths can be used simultaneously
   for transmitting user messages.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-tuexen-tsvwg-sctp-multipath-22'/>
   <format target='https://www.ietf.org/archive/id/draft-tuexen-tsvwg-sctp-multipath-22.txt' type='TXT'/>
</reference>


<reference anchor='I-D.deconinck-quic-multipath'>
   <front>
      <title>Multipath Extensions for QUIC (MP-QUIC)</title>
      <author fullname='Quentin De Coninck'>
	 <organization>UCLouvain</organization>
      </author>
      <author fullname='Olivier Bonaventure'>
	 <organization>UCLouvain</organization>
      </author>
      <date day='3' month='May' year='2021'/>
      <abstract>
	 <t>   This document specifies extensions to the QUIC protocol to enable the
   simultaneous usage of multiple paths for a single connection.  These
   extensions are compliant with the single-path QUIC design and
   preserve QUIC privacy features.

   Discussion about this draft is encouraged either on the QUIC IETF
   mailing list quic@ietf.org or on the GitHub repository which contains
   the draft: https://github.com/qdeconinck/draft-deconinck-multipath-
   quic.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-deconinck-quic-multipath-07'/>
   <format target='https://www.ietf.org/archive/id/draft-deconinck-quic-multipath-07.txt' type='TXT'/>
</reference>


<reference anchor='I-D.amend-tsvwg-multipath-dccp'>
   <front>
      <title>DCCP Extensions for Multipath Operation with Multiple Addresses</title>
      <author fullname='Markus Amend'>
	 <organization>Deutsche Telekom</organization>
      </author>
      <author fullname='Dirk von Hugo'>
	 <organization>Deutsche Telekom</organization>
      </author>
      <author fullname='Anna Brunstrom'>
	 <organization>Karlstad University</organization>
      </author>
      <author fullname='Andreas Kassler'>
	 <organization>Karlstad University</organization>
      </author>
      <author fullname='Veselin Rakocevic'>
	 <organization>City University of London</organization>
      </author>
      <author fullname='Stephen Johnson'>
	 <organization>BT</organization>
      </author>
      <date day='12' month='July' year='2021'/>
      <abstract>
	 <t>   DCCP communication is currently restricted to a single path per
   connection, yet multiple paths often exist between peers.  The
   simultaneous use of these multiple paths for a DCCP session could
   improve resource usage within the network and, thus, improve user
   experience through higher throughput and improved resilience to
   network failures.  Use cases for a Multipath DCCP (MP-DCCP) are
   mobile devices (handsets, vehicles) and residential home gateways
   simultaneously connected to distinct paths as, e.g., a cellular link
   and a WiFi link or to a mobile radio station and a fixed access
   network.  Compared to existing multipath protocols such as MPTCP, MP-
   DCCP provides specific support for non-TCP user traffic as UDP or
   plain IP.  More details on potential use cases are provided in
   [website], [slide] and [paper].  All this use cases profit from an
   Open Source Linux reference implementation provided under [website].

   This document presents a set of extensions to traditional DCCP to
   support multipath operation.  Multipath DCCP provides the ability to
   simultaneously use multiple paths between peers.  The protocol offers
   the same type of service to applications as DCCP and it provides the
   components necessary to establish and use multiple DCCP flows across
   potentially disjoint paths.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-amend-tsvwg-multipath-dccp-05'/>
   <format target='https://www.ietf.org/archive/id/draft-amend-tsvwg-multipath-dccp-05.txt' type='TXT'/>
</reference>


<reference anchor="ACMCS14" >
  <front>
    <title>Experimental Evaluation of Multipath TCP Schedulers</title>
    <author initials="C." surname="Paasch">
      <organization></organization>
    </author>
    <author initials="S." surname="Ferlin">
      <organization></organization>
    </author>
    <author initials="O." surname="Alay">
      <organization></organization>
    </author>
    <author initials="O." surname="Bonaventure">
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
  <seriesInfo name="Proceedings of the 2014 ACM SIGCOMM workshop on Capacity sharing workshop" value=""/>
</reference>
<reference anchor="NSDI12" >
  <front>
    <title>How Hard Can It Be? Designing and Implementing a Deployable Multipath TCP</title>
    <author initials="C." surname="Raiciu">
      <organization></organization>
    </author>
    <author initials="C." surname="Paasch">
      <organization></organization>
    </author>
    <author initials="S." surname="Barre">
      <organization></organization>
    </author>
    <author initials="A." surname="Ford">
      <organization></organization>
    </author>
    <author initials="M." surname="Honda">
      <organization></organization>
    </author>
    <author initials="F." surname="Duchene">
      <organization></organization>
    </author>
    <author initials="O." surname="Bonaventure">
      <organization></organization>
    </author>
    <author initials="M." surname="Handley">
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
  <seriesInfo name="9th USENIX Symposium on Networked Systems Design and Implementation (NSDI 12)" value=""/>
</reference>
<reference anchor="CONEXT15" >
  <front>
    <title>SMAPP &amp;#58; Towards Smart Multipath TCP-enabled APPlications</title>
    <author initials="B." surname="Hesmans">
      <organization></organization>
    </author>
    <author initials="G." surname="Detal">
      <organization></organization>
    </author>
    <author initials="S." surname="Barre">
      <organization></organization>
    </author>
    <author initials="R." surname="Bauduin">
      <organization></organization>
    </author>
    <author initials="O." surname="Bonaventure">
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
  <seriesInfo name="CoNEXT '15&#58; Proceedings of the 11th ACM Conference on Emerging Networking Experiments and Technologies" value=""/>
</reference>
<reference anchor="MultipathSim" target="https://github.com/obonaventure/draft-schedulers/blob/master/scheduler_simulator.py">
  <front>
    <title>Multipath simulator for the IETF draft Multipath schedulers</title>
    <author initials="M." surname="Piraux">
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>


    </references>


<section anchor="change-log"><name>Change log</name>

<section anchor="since-draft-bonaventure-iccrg-schedulers-00"><name>Since draft-bonaventure-iccrg-schedulers-00</name>

<t><list style="symbols">
  <t>Renamed Delay Threshold to RTT Threshold</t>
  <t>Added the Priority And Lowest RTT First scheduler</t>
</list></t>

</section>
</section>


  </back>

<!-- ##markdown-source:
H4sIANqndmEAA81c25LcRnJ9r68ok2GL9E43L15tSGPL1mgoaidCFLmcUWgj
1gpGNVDdjR000EIB0+xljL/deTLrhr6R3PWD+cTBpZCVlXnyZFZWTyYT1Vd9
bc/1q6Huq7Xpl9oVS1sOte2cMrNZZ++O3CzbojErerXszLyfzNrG3NmmHzo7
qYqiW0zSs5Onz1Vpenr2+dPnzybPnk6ef6kKurBou+25tu/XSlXr7lz33eD6
50+ffk0vmM6ac3319ual2rTd7aJrhzX9fXn59gf9C12omoX+ARfVrd3SEyXd
bHrbNbafvIBIShVtSU+d68FNjCuqSrneNOU7U7cNybK1Tq2rc/2Xvi3OtGu7
vrNzR//brvCfX5UyQ79su3OlJ0rrqnHn+vVUf5cmSldFBa/r6q6y3c69tluY
pvqb6au2Odc/X/7YDnemauiOXZmqjq9Ns9e+HYpaHpvObPbhV1P9purM8D5+
85V5X61suvrRr8kLU3nh2Hf+NNUvrL5sm6opbuO3/jSQdFUzvvXRD/4mb01L
W8hLJyb3nbFd77LJ9f2yskO6Pv7ajXWODMTls5M3pvLGt71/Ykr2kH3qkvRo
yBiW8VOXy65yfbtephvjb12s17VNHyrW/Ni3BpenRbsaT+RiZZsym0d3O7h4
cTzwCzv0cBKaTW1vMVD4xopfmxq8RjPhu6RGpZq2W9Hbd/acPKaZp7+0fvvy
8g9fPf99+O+/ffmH8N/nX3+F/15NXkz7wb63zaR3dxs4aL+erIJvh0fiak1+
G6pi/z4L5UeINydlUazxxMXlq8vrZyyF1tF/8G+yvwDp6vVUv7RdzdaTrpK3
XdRmu3tt7GVaewj7/v3admThTW9q/f2dqQfWs27nGYDdXL7R1wnE8Lqjt6yD
Ns/1m64trAVqOLzX0+I8f/rs95iWvr764fL1q1caaOSW7VrT2JdmbYqq32q3
NB0QKdykkX+6fnH17PlJTbw1VVENn6af70zn5xsuXpDSCPdG18gC/9g2pRld
fElOPdCkG/sxVebDEFTWdptr+I/thi53JU270Ve9/s7+FxmxqxYNpk7P66sV
OcWK3Z4u0M113W7NrLbjJdjT+9d0/efr73+6+rO+3q7WrauGFfT7k+2hUVvS
ZdfblfPfG39M1vkRFK6fPX9Mo1++/un7P988+/K49r+jGVq3Mo0bXf4B+EcG
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

-->

</rfc>

