<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.20 (Ruby 3.3.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-tahiliani-tsvwg-fq-pie-00" category="exp" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.24.0 -->
  <front>
    <title abbrev="TODO - Abbreviation">Flow Queue PIE: A Hybrid Packet Scheduler and Active Queue Management Algorithm</title>
    <seriesInfo name="Internet-Draft" value="draft-tahiliani-tsvwg-fq-pie-00"/>
    <author initials="M. P." surname="Tahiliani" fullname="Mohit P. Tahiliani">
      <organization>National Institute of Technology Karnataka</organization>
      <address>
        <postal>
          <street>P. O. Srinivasnagar, Surathkal</street>
          <city>Mangalore, Karnataka - 575025</city>
          <country>India</country>
        </postal>
        <email>tahiliani@nitk.edu.in</email>
        <uri>http://tahiliani.in</uri>
      </address>
    </author>
    <date year="2024" month="November" day="08"/>
    <area>Web and Internet Transport</area>
    <workgroup>Transport and Services Working Group</workgroup>
    <keyword>next generation</keyword>
    <keyword>unicorn</keyword>
    <keyword>sparkling distributed ledger</keyword>
    <abstract>
      <?line 65?>

<t>This document presents Flow Queue Proportional Integral controller Enhanced (FQ-PIE), a hybrid packet scheduler and Active Queue Management (AQM) algorithm to isolate flows and tackle the problem of bufferbloat. FQ-PIE uses hashing to classify incoming packets into different queues and provide flow isolation. Packets are dequeued by using a variant of the round robin scheduler. Each such flow is managed by the PIE algorithm to maintain high link utilization while controlling the queue delay to a target value.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://mohittahiliani.github.io/draft-tahiliani-tsvwg-fq-pie/draft-tahiliani-tsvwg-fq-pie.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-tahiliani-tsvwg-fq-pie/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Transport and Services Working Group Working Group mailing list (<eref target="mailto:tsvwg@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/tsvwg/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/tsvwg/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/mohittahiliani/draft-tahiliani-tsvwg-fq-pie"/>.</t>
    </note>
  </front>
  <middle>
    <?line 69?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Flow Queue Proportional Integral Controller Enhanced (FQ-PIE) combines flow queuing with the PIE (Proportional Integral controller Enhanced) <xref target="RFC8033"/> Active Queue Management (AQM) algorithm to provide flow isolation and reduce bufferbloat by controlling queue delay. This is similar to how Flow Queue Controlled Delay (FQ-CoDel) <xref target="RFC8290"/> integrates flow queuing with the CoDel (Controlled Delay) AQM algorithm <xref target="RFC8289"/>.</t>
      <t>When a packet is enqueued, it is classified into different queues to ensure isolation between flows. While the goal of flow queuing is to assign a unique queue to each flow, flows can instead be hashed into a set of buckets using a hash function, where each bucket corresponds to its own queue. The PIE AQM operates independently on each of these queues, enabling each flow to receive appropriate congestion signals either implicitly (via packet drops) or explicitly (via mechanisms such as Explicit Congestion Notification (ECN)). For dequeuing, FQ-PIE employs the Deficit Round Robin (DRR) based scheduler described in <xref target="RFC8290"/>, which ensures fair packet scheduling across the different queues.</t>
      <t>FQ-PIE has been incorporated into the mainline Linux kernel as a queuing discipline (qdisc) <xref target="LINUX-FQ-PIE"/> and is supported by several Linux distributions. Additionally, an implementation of FQ-PIE is available in the ns-3 network simulator.</t>
    </section>
    <section anchor="terminology">
      <name>Terminology</name>
      <t>This document uses the terms defined in Section 1.1 of <xref target="RFC8290"/> and Sections 4 and 5 of <xref target="RFC8033"/>.</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <?line -18?>

</section>
    <section anchor="the-fq-pie-algorithm">
      <name>The FQ-PIE Algorithm</name>
      <t>The FQ-PIE algorithm consists of two main components: (i) flow queuing, which isolates competing flows by treating flows that build queues differently from those that do not, and (ii) the PIE AQM algorithm, which manages each queue and maintains a target queue delay (recommended as 15 ms in <xref target="RFC8033"/>). Flow queuing works by classifying incoming packets into different queues during the enqueue phase and then scheduling outgoing packets from these queues during the dequeue phase. The PIE algorithm, however, only operates during enqueue.</t>
      <t>The details of flow queuing and the PIE algorithm are not covered here; for more information, please refer to <xref target="RFC8290"/> and <xref target="RFC8033"/>, respectively.</t>
      <section anchor="enqueue">
        <name>Enqueue</name>
        <t>The packet enqueue process is described as follows: first, the incoming packets are classified into different queues by hashing the 5-tuple, which includes the protocol number, source and destination IP addresses, and source and destination port numbers, similar to the approach used in FQ-CoDel.</t>
        <t>Next, the packet is passed to the PIE algorithm, which uses a drop probability to determine whether the packet should be enqueued or dropped, as outlined in <xref target="RFC8033"/>. This drop probability is updated periodically (every 15 ms, as per <xref target="RFC8033"/>) based on the current queue delay’s deviation from the target delay and whether the delay is trending up or down.</t>
        <t><xref target="RFC8033"/> presents two methods for calculating the current queue delay: one uses Little’s Law, estimating delay based on the queue length and the average dequeue rate; the other takes direct measurements using timestamps, as implemented in CoDel and FQ-CoDel. However, experimental studies on the PIE algorithm indicate that while the dequeue rate is intended to estimate the transmission rate of packets over the outgoing link, it may instead reflect the rate at which packets move from the host stack (e.g., Linux qdisc) to the device driver’s transmission ring. Additionally, in FQ-PIE, queue delay estimates from Little’s Law can be unreliable, as it’s challenging to calculate an accurate per-queue dequeue rate. Consequently, the FQ-PIE algorithm <bcp14>SHOULD</bcp14> calculate the current queue delay using direct measurements with timestamps.</t>
        <t>It is important to note that the timestamping approach provides a "per-packet queue delay," while the drop probability is calculated periodically (every 15 ms, as specified in <xref target="RFC8033"/>). Therefore, the FQ-PIE algorithm <bcp14>MAY</bcp14> use the queue delay value from the most recently dequeued packet when calculating the drop probability.</t>
        <t>At the time of writing this document, both the Linux and ns-3 implementations use timestamps to calculate the current queue delay and consider the measurements from the most recently dequeued packet when calculating the drop probability <xref target="REVISIT-PIE"/>. Additionally, both implementations offer an option to use the dequeue rate estimation technique based on Little’s Law.</t>
        <t>Lastly, if an incoming packet arrives when the total number of enqueued packets has already saturated the queue capacity, FQ-PIE drops the packet without further processing. In contrast, FQ-CoDel identifies the queue with the largest current byte count (i.e., a "fat flow") when the queue capacity is saturated and drops half of the packets from this queue (up to a maximum of 64 packets, as specified in Section 4.1 of <xref target="RFC8290"/>). FQ-PIE does not adopt this approach for the reasons explained below.</t>
        <t>Since CoDel performs its queue control operations during the dequeue phase and does not drop incoming packets until the queue is full, it tends to fill its queues more quickly than PIE, which drops packets randomly during the enqueue phase. This is especially true when CoDel has just entered the dropping phase, as it takes time to ramp up its packet dropping frequency. Therefore, the strategy of dropping half of the packets from a fat flow's queue suits FQ-CoDel but is not appropriate for FQ-PIE. Dropping packets in bulk might lead to underutilization of link capacity, as FQ-PIE already enforces queue control during the enqueue phase.</t>
      </section>
      <section anchor="dequeue">
        <name>Dequeue</name>
        <t>The packet dequeue process in FQ-PIE is similar to that in FQ-CoDel, where a DRR-based scheduler is used to dequeue packets from each queue. The key difference is that in FQ-CoDel, CoDel operates during this phase, whereas in FQ-PIE, PIE operates during the enqueue phase. The method for obtaining direct measurements of per-packet queue delay is the same in both FQ-PIE and FQ-CoDel, and is performed during the dequeue phase.</t>
      </section>
      <section anchor="ecn-support">
        <name>ECN Support</name>
        <t>FQ-PIE <bcp14>MAY</bcp14> support ECN by marking ECN-Capable Transport (ECT) packets <xref target="RFC3168"/> instead of dropping them, in accordance with the recommendations in Section 5.1 of <xref target="RFC8033"/>. Both implementations, Linux and ns-3, comply with these recommendations at the time of writing this document.</t>
      </section>
    </section>
    <section anchor="scope-of-experimentation">
      <name>Scope of Experimentation</name>
      <t>The design of the FQ-PIE algorithm as described in this document has been a part of the Linux kernel since version 5.6 (released on March 29, 2020) and ns-3 network simulator since version ns-3.34 (released on July 14, 2021). The following aspects can be explored for further study and experimentation:</t>
      <ul spacing="normal">
        <li>
          <t>Interactions between flow queuing and new congestion control algorithms, such as Bottleneck Bandwidth and Round-trip propagation time (BBR) <xref target="I-D.draft-ietf-ccwg-bbr"/>.</t>
        </li>
        <li>
          <t>Different packet drop probability thresholds to switch from marking packets to dropping packets.</t>
        </li>
        <li>
          <t>Evaluation of the enhancements to the PIE algorithm described in Section 5 in <xref target="RFC8033"/> to decide which enhancements are suitable for deployment with FQ-PIE.</t>
        </li>
        <li>
          <t>Effectiveness of FQ-PIE in terms of providing isolation and minimal latency for low volume traffic (short flows) such as web applications, instant messaging applications, interactive applications and IoT applications.</t>
        </li>
        <li>
          <t>Different hashing mechanisms to improve the overall working of flow queuing.</t>
        </li>
      </ul>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The FQ-PIE algorithm introduces no specific security exposures. The flow queuing aspect of the FQ-PIE algorithm is the same as FQ-CoDel, and hence has similar advantages from the security perspective as outlined in Section 8 of <xref target="RFC8290"/>. The PIE aspect of the FQ-PIE algorithm is the same as described in <xref target="RFC8033"/> that does not have any security exposures.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC8033">
          <front>
            <title>Proportional Integral Controller Enhanced (PIE): A Lightweight Control Scheme to Address the Bufferbloat Problem</title>
            <author fullname="R. Pan" initials="R." surname="Pan"/>
            <author fullname="P. Natarajan" initials="P." surname="Natarajan"/>
            <author fullname="F. Baker" initials="F." surname="Baker"/>
            <author fullname="G. White" initials="G." surname="White"/>
            <date month="February" year="2017"/>
            <abstract>
              <t>Bufferbloat is a phenomenon in which excess buffers in the network cause high latency and latency variation. As more and more interactive applications (e.g., voice over IP, real-time video streaming, and financial transactions) run in the Internet, high latency and latency variation degrade application performance. There is a pressing need to design intelligent queue management schemes that can control latency and latency variation, and hence provide desirable quality of service to users.</t>
              <t>This document presents a lightweight active queue management design called "PIE" (Proportional Integral controller Enhanced) that can effectively control the average queuing latency to a target value. Simulation results, theoretical analysis, and Linux testbed results have shown that PIE can ensure low latency and achieve high link utilization under various congestion situations. The design does not require per-packet timestamps, so it incurs very little overhead and is simple enough to implement in both hardware and software.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8033"/>
          <seriesInfo name="DOI" value="10.17487/RFC8033"/>
        </reference>
        <reference anchor="RFC8290">
          <front>
            <title>The Flow Queue CoDel Packet Scheduler and Active Queue Management Algorithm</title>
            <author fullname="T. Hoeiland-Joergensen" initials="T." surname="Hoeiland-Joergensen"/>
            <author fullname="P. McKenney" initials="P." surname="McKenney"/>
            <author fullname="D. Taht" initials="D." surname="Taht"/>
            <author fullname="J. Gettys" initials="J." surname="Gettys"/>
            <author fullname="E. Dumazet" initials="E." surname="Dumazet"/>
            <date month="January" year="2018"/>
            <abstract>
              <t>This memo presents the FQ-CoDel hybrid packet scheduler and Active Queue Management (AQM) algorithm, a powerful tool for fighting bufferbloat and reducing latency.</t>
              <t>FQ-CoDel mixes packets from multiple flows and reduces the impact of head-of-line blocking from bursty traffic. It provides isolation for low-rate traffic such as DNS, web, and videoconferencing traffic. It improves utilisation across the networking fabric, especially for bidirectional traffic, by keeping queue lengths short, and it can be implemented in a memory- and CPU-efficient fashion across a wide range of hardware.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8290"/>
          <seriesInfo name="DOI" value="10.17487/RFC8290"/>
        </reference>
        <reference anchor="RFC8289">
          <front>
            <title>Controlled Delay Active Queue Management</title>
            <author fullname="K. Nichols" initials="K." surname="Nichols"/>
            <author fullname="V. Jacobson" initials="V." surname="Jacobson"/>
            <author fullname="A. McGregor" initials="A." role="editor" surname="McGregor"/>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar"/>
            <date month="January" year="2018"/>
            <abstract>
              <t>This document describes CoDel (Controlled Delay) -- a general framework that controls bufferbloat-generated excess delay in modern networking environments. CoDel consists of an estimator, a setpoint, and a control loop. It requires no configuration in normal Internet deployments.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8289"/>
          <seriesInfo name="DOI" value="10.17487/RFC8289"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC3168">
          <front>
            <title>The Addition of Explicit Congestion Notification (ECN) to IP</title>
            <author fullname="K. Ramakrishnan" initials="K." surname="Ramakrishnan"/>
            <author fullname="S. Floyd" initials="S." surname="Floyd"/>
            <author fullname="D. Black" initials="D." surname="Black"/>
            <date month="September" year="2001"/>
            <abstract>
              <t>This memo specifies the incorporation of ECN (Explicit Congestion Notification) to TCP and IP, including ECN's use of two bits in the IP header. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3168"/>
          <seriesInfo name="DOI" value="10.17487/RFC3168"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="LINUX-FQ-PIE" target="https://ieeexplore.ieee.org/abstract/document/9000684">
          <front>
            <title>FQ-PIE Queue Discipline in the Linux Kernel: Design, Implementation and Challenges</title>
            <author initials="G." surname="Ramakrishnan" fullname="Gautam Ramakrishnan">
              <organization/>
            </author>
            <author initials="M." surname="Bhasi" fullname="Mohit Bhasi">
              <organization/>
            </author>
            <author initials="V." surname="Saicharan" fullname="V. Saicharan">
              <organization/>
            </author>
            <author initials="L." surname="Monis" fullname="Leslie Monis">
              <organization/>
            </author>
            <author initials="S. D." surname="Patil" fullname="Sachin D. Patil">
              <organization/>
            </author>
            <author initials="M. P." surname="Tahiliani" fullname="Mohit P. Tahiliani">
              <organization/>
            </author>
            <date year="2019" month="October"/>
          </front>
          <seriesInfo name="2019 IEEE 44th LCN Symposium on Emerging Topics in Networking (LCN Symposium)" value=""/>
        </reference>
        <reference anchor="REVISIT-PIE" target="https://www.sciencedirect.com/science/article/pii/S1389128619313775">
          <front>
            <title>Revisiting Design Choices in Queue Disciplines: The PIE Case</title>
            <author initials="P." surname="Imputato" fullname="Pasquale Imputato">
              <organization/>
            </author>
            <author initials="S." surname="Avallone" fullname="Stefano Avallone">
              <organization/>
            </author>
            <author initials="M. P." surname="Tahiliani" fullname="Mohit P. Tahiliani">
              <organization/>
            </author>
            <author initials="G." surname="Ramakrishnan" fullname="Gautam Ramakrishnan">
              <organization/>
            </author>
            <date year="2020" month="April"/>
          </front>
          <seriesInfo name="Computer Networks" value=""/>
        </reference>
        <reference anchor="I-D.draft-ietf-ccwg-bbr">
          <front>
            <title>BBR Congestion Control</title>
            <author fullname="Neal Cardwell" initials="N." surname="Cardwell">
              <organization>Google</organization>
            </author>
            <author fullname="Ian Swett" initials="I." surname="Swett">
              <organization>Google</organization>
            </author>
            <author fullname="Joseph Beshay" initials="J." surname="Beshay">
              <organization>Meta</organization>
            </author>
            <date day="21" month="October" year="2024"/>
            <abstract>
              <t>   This document specifies the BBR congestion control algorithm.  BBR
   ("Bottleneck Bandwidth and Round-trip propagation time") uses recent
   measurements of a transport connection's delivery rate, round-trip
   time, and packet loss rate to build an explicit model of the network
   path.  BBR then uses this model to control both how fast it sends
   data and the maximum volume of data it allows in flight in the
   network at any time.  Relative to loss-based congestion control
   algorithms such as Reno [RFC5681] or CUBIC [RFC9438], BBR offers
   substantially higher throughput for bottlenecks with shallow buffers
   or random losses, and substantially lower queueing delays for
   bottlenecks with deep buffers (avoiding "bufferbloat").  BBR can be
   implemented in any transport protocol that supports packet-delivery
   acknowledgment.  Thus far, open source implementations are available
   for TCP [RFC9293] and QUIC [RFC9000].  This document specifies
   version 3 of the BBR algorithm, BBRv3.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-ccwg-bbr-01"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
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
0yoAAA==

-->

</rfc>
