<?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.39 (Ruby 3.4.9) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-tsvwg-fq-pie-02" category="exp" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.34.0 -->
  <front>
    <title abbrev="FQ-PIE">Flow Queue PIE: A Hybrid Packet Scheduler and Active Queue Management Algorithm</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-tsvwg-fq-pie-02"/>
    <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="2026" month="July" day="06"/>
    <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 78?>

<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-ietf-tsvwg-fq-pie/draft-ietf-tsvwg-fq-pie.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-tsvwg-fq-pie/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Transport and Services 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-ietf-tsvwg-fq-pie"/>.</t>
    </note>
  </front>
  <middle>
    <?line 82?>

<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) <xref target="RFC3168"/>). 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>An implementation of 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. Another implementation has also been incorporated into FreeBSD <xref target="FREEBSD-FQ-PIE"/>. Finally, an implementation of FQ-PIE is also available in the ns-3 network simulator <xref target="ns-3-FQ-PIE"/>.</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 (such as the 15 ms default 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 <xref target="REVISIT-PIE"/> 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, the Linux, FreeBSD 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. Additionally, these 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"/>. The Linux, FreeBSD and ns-3 implementations of FQ-PIE 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), FreeBSD since version 11.0-RELEASE (released on October 10, 2016), and the ns-3 network simulator since version 3.34 (released on July 14, 2021). The following aspects can be explored for further study and experimentation:</t>
      <ul spacing="normal">
        <li>
          <t>The scenarios similar to those summarized in Figure 4 of <xref target="RFC7928"/> <bcp14>MAY</bcp14> be considered for an in-depth experimentation of FQ-PIE.</t>
        </li>
        <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="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>
        <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="RFC7928">
          <front>
            <title>Characterization Guidelines for Active Queue Management (AQM)</title>
            <author fullname="N. Kuhn" initials="N." role="editor" surname="Kuhn"/>
            <author fullname="P. Natarajan" initials="P." role="editor" surname="Natarajan"/>
            <author fullname="N. Khademi" initials="N." role="editor" surname="Khademi"/>
            <author fullname="D. Ros" initials="D." surname="Ros"/>
            <date month="July" year="2016"/>
            <abstract>
              <t>Unmanaged large buffers in today's networks have given rise to a slew of performance issues. These performance issues can be addressed by some form of Active Queue Management (AQM) mechanism, optionally in combination with a packet-scheduling scheme such as fair queuing. This document describes various criteria for performing characterizations of AQM schemes that can be used in lab testing during development, prior to deployment.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7928"/>
          <seriesInfo name="DOI" value="10.17487/RFC7928"/>
        </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="FREEBSD-FQ-PIE" target="https://web.archive.org/web/20241018123533/http://caia.swin.edu.au/reports/160418A/CAIA-TR-160418A.pdf">
          <front>
            <title>Dummynet AQM v0. 2–CoDel, FQ-CoDel, PIE and FQ-PIE for FreeBSDs ipfw/dummynet Framework</title>
            <author initials="R." surname="Al-Saadi" fullname="Rasool Al-Saadi">
              <organization/>
            </author>
            <author initials="G." surname="Armitage" fullname="Grenville Armitage">
              <organization/>
            </author>
            <date year="2016" month="October"/>
          </front>
          <seriesInfo name="Centre for Advanced Internet Architectures, Swinburne University of Technology, Melbourne, Australia, Tech. Rep. A, 160418" value=""/>
        </reference>
        <reference anchor="ns-3-FQ-PIE" target="https://www.nsnam.org/docs/models/html/fq-pie.html">
          <front>
            <title>FQ-PIE Queue Discipline in ns-3</title>
            <author>
              <organization/>
            </author>
            <date year="2021" month="July"/>
          </front>
        </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="2" month="March" year="2026"/>
            <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-05"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
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
fTJDinb+D0n11CFhLgAA

-->

</rfc>
