Subtopic Deep Dive

Active Queue Management
Research Guide

What is Active Queue Management?

Active Queue Management (AQM) uses router algorithms to detect and signal impending congestion by dropping or marking packets before queues fill, preventing bufferbloat and reducing latency.

AQM techniques like CoDel, PIE, and FQ-CoDel manage queue delays in networks (Nichols and Jacobson, 2012; Hoeiland-Joergensen et al., 2018). These methods address excessive buffering in cellular, datacenter, and access networks, improving interaction with TCP variants. Over 1,000 papers cite foundational AQM works since 2012.

15
Curated Papers
3
Key Challenges

Why It Matters

AQM reduces web page load times by controlling queue delays in home routers and ISPs, directly impacting user experience in video streaming and VoIP (Nichols and Jacobson, 2012). In 5G networks, intelligent AQM stabilizes QoS for massive IoT flows, preventing overbuffering at base stations (Jung et al., 2020). Datacenter operators deploy FQ-CoDel to cut tail latencies for microservices, boosting throughput under bursty traffic (Hoeiland-Joergensen et al., 2018). Traffic policing analysis reveals ISP shapers interact poorly with AQM, causing unfairness to large flows (Flach et al., 2016).

Key Research Challenges

Tuning AQM parameters

AQM algorithms like CoDel require precise delay thresholds, but link variability in cellular networks causes instability (Jiang et al., 2012). Parameter selection remains manual, leading to under- or over-dropping in dynamic environments (Nichols and Jacobson, 2012). Recent work proposes adaptive tuning but lacks generalization across hardware (Jung et al., 2020).

Coexistence with transport protocols

AQM drop signals conflict with low-priority congestion control, inflating RTTs for bulk transfers (Gong et al., 2014). TCP variants misinterpret non-congestion losses as queue pressure in bufferbloat scenarios (Zaki et al., 2015). 5G mmWave exacerbates this due to high variability (Poorzare and Calveras, 2020).

Hardware deployment constraints

Programmable switches enable P4-CoDel, but legacy routers lack cycles for AQM computation (Kundel et al., 2018). Bufferbloat persists in cheap consumer devices with fixed large buffers (Cerf, 2014). ISP policing overrides AQM benefits for high-volume flows (Flach et al., 2016).

Essential Papers

1.

Adaptive Congestion Control for Unpredictable Cellular Networks

Yasir Zaki, Thomas Pötsch, Jay Chen et al. · 2015 · 211 citations

Legacy congestion controls including TCP and its variants are known to perform poorly over cellular networks due to highly variable capacities over short time scales, self-inflicted packet delays, ...

2.

Controlling Queue Delay

Kathleen Nichols, Van Jacobson · 2012 · Queue · 203 citations

Nearly three decades after it was first diagnosed, the "persistently full buffer problem" recently exposed as part of "bufferbloat", is still with us and made increasingly critical by two trends. F...

3.

The Flow Queue CoDel Packet Scheduler and Active Queue Management Algorithm

T. Hoeiland-Joergensen, Paul E. McKenney, Dave Täht et al. · 2018 · 150 citations

This memo presents the FQ-CoDel hybrid packet scheduler and Active Queue Management (AQM) algorithm, a powerful tool for fighting bufferbloat and reducing latency. FQ-CoDel mixes packets from mult...

4.

Understanding bufferbloat in cellular networks

Haiqing Jiang, Zeyu Liu, Yaogong Wang et al. · 2012 · 71 citations

Bufferbloat is a prevalent problem in the Internet where excessive buffers incur long latency, substantial jitter and sub-optimal throughput. This work provides the first elaborative understanding ...

5.

An Internet-Wide Analysis of Traffic Policing

Tobias Flach, Pavlos Papageorge, Andreas Terzis et al. · 2016 · 65 citations

Large flows like videos consume significant bandwidth. Some ISPs actively manage these high volume flows with techniques like policing, which enforces a flow rate by dropping excess traffic. While ...

6.

Intelligent Active Queue Management for Stabilized QoS Guarantees in 5G Mobile Networks

Soyi Jung, Joongheon Kim, Jae‐Hyun Kim · 2020 · IEEE Systems Journal · 47 citations

The fifth-generation (5G) new radio standard defines various functions for forwarding treatments under differentiated quality of services requirements. In particular, a gNB base station helps comba...

7.

P4-CoDel: Active Queue Management in Programmable Data Planes

Ralf Kundel, Jeremias Blendin, Tobias Viernickel et al. · 2018 · 47 citations

Today, networks are still vulnerable to high latencies. An important reason for that is the Bufferbloat problem caused by big packet buffers as part of the forwarding equipment of modern networks. ...

Reading Guide

Foundational Papers

Start with Nichols and Jacobson (2012) for CoDel theory and bufferbloat diagnosis (203 citations), then Jiang et al. (2012) for cellular specifics, Gong et al. (2014) for AQM-transport interactions.

Recent Advances

Hoeiland-Joergensen et al. (2018) on FQ-CoDel deployment; Jung et al. (2020) on 5G AQM; Kundel et al. (2018) on P4-programmable AQM.

Core Methods

CoDel drops at fixed delay targets; PIE estimates loss rate via exponentially weighted moving average; FQ-CoDel combines flow queuing with CoDel drops; P4-CoDel ports to programmable dataplanes.

How PapersFlow Helps You Research Active Queue Management

Discover & Search

Research Agent uses citationGraph on 'Controlling Queue Delay' (Nichols and Jacobson, 2012) to map 200+ citing works on CoDel variants, then exaSearch for 'FQ-CoDel 5G deployment' to find Jung et al. (2020). findSimilarPapers expands to bufferbloat in cellular nets from Jiang et al. (2012).

Analyze & Verify

Analysis Agent runs readPaperContent on Hoeiland-Joergensen et al. (2018) to extract FQ-CoDel pseudocode, then runPythonAnalysis simulates queue dynamics with pandas/NumPy on latency traces, verified by GRADE scoring (A-grade for statistical significance) and CoVe chain-of-verification against original claims.

Synthesize & Write

Synthesis Agent detects gaps in AQM-5G coexistence via contradiction flagging between Gong et al. (2014) and Poorzare and Calveras (2020), then Writing Agent uses latexEditText for algorithm sections, latexSyncCitations for 50-paper bibliography, and latexCompile for conference-ready PDF with exportMermaid flowcharts of FQ-CoDel.

Use Cases

"Simulate CoDel vs PIE queue delay under bursty cellular traffic"

Research Agent → searchPapers 'CoDel PIE comparison' → Analysis Agent → runPythonAnalysis (NumPy queue simulator on traces from Jiang et al. 2012) → matplotlib plots of 95th percentile latency.

"Write survey section on FQ-CoDel deployments with citations"

Synthesis Agent → gap detection (Hoeiland-Joergensen et al. 2018 vs Kundel et al. 2018) → Writing Agent → latexEditText + latexSyncCitations (15 papers) + latexCompile → export PDF with FQ-CoDel Mermaid diagram.

"Find GitHub code for P4 AQM implementations"

Research Agent → searchPapers 'P4-CoDel' → Code Discovery workflow (paperExtractUrls → paperFindGithubRepo → githubRepoInspect) → verified P4 code from Kundel et al. (2018) with test results.

Automated Workflows

Deep Research workflow scans 50+ AQM papers via citationGraph from Nichols and Jacobson (2012), producing structured report with GRADE-verified impact metrics on latency reduction. DeepScan's 7-step analysis chains readPaperContent on FQ-CoDel (Hoeiland-Joergensen et al., 2018) → runPythonAnalysis simulations → CoVe verification for deployment feasibility. Theorizer generates hypotheses on AQM-tuning for 5G from Gong et al. (2014) and Jung et al. (2020) patterns.

Frequently Asked Questions

What defines Active Queue Management?

AQM proactively drops or marks packets to signal congestion before buffer overflow, contrasting drop-tail queuing (Nichols and Jacobson, 2012).

What are core AQM methods?

CoDel targets queue delay thresholds; FQ-CoDel adds per-flow fairness; PIE uses packet loss gradients (Hoeiland-Joergensen et al., 2018; Nichols and Jacobson, 2012).

What are key papers on AQM?

Foundational: Nichols and Jacobson (2012, 203 citations) on CoDel; Hoeiland-Joergensen et al. (2018, 150 citations) on FQ-CoDel. Cellular focus: Jiang et al. (2012, 71 citations).

What open problems exist in AQM?

Adaptive parameter tuning for 5G variability; coexistence with traffic policing; low-overhead P4 implementations on commodity switches (Jung et al., 2020; Flach et al., 2016; Kundel et al., 2018).

Research Network Traffic and Congestion Control with AI

PapersFlow provides specialized AI tools for Computer Science researchers. Here are the most relevant for this topic:

See how researchers in Computer Science & AI use PapersFlow

Field-specific workflows, example queries, and use cases.

Computer Science & AI Guide

Start Researching Active Queue Management with AI

Search 474M+ papers, run AI-powered literature reviews, and write with integrated citations — all in one workspace.

See how PapersFlow works for Computer Science researchers