Skip to content

Commit 87f1eb2

Browse files
committed
change MP-QUIC to QUIC-MULTIPATH
1 parent bcfea30 commit 87f1eb2

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

draft-tjohn-quic-multipath-dmtp.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Deadline Aware Streams in MP-QUIC"
2+
title: "Deadline Aware Streams in QUIC Multipath"
33
category: info # TODO: Figure out correct category
44

55
docname: draft-tjohn-quic-multipath-dmtp-latest
@@ -32,7 +32,7 @@ author:
3232
normative:
3333
QUIC: rfc9000
3434
QUIC-TLS: rfc9001
35-
MP-QUIC: I-D.draft-ietf-quic-multipath
35+
QUIC-MULTIPATH: I-D.draft-ietf-quic-multipath
3636
QUIC-AFEC: I-D.draft-dmoskvitin-quic-adaptive-fec
3737
RFC3339:
3838
RFC9473:
@@ -46,23 +46,23 @@ informative:
4646

4747
--- abstract
4848

49-
This document proposes the Deadline-aware Multipath Transport Protocol (DMTP) concept as an extension to the Multipath Extension for QUIC (MP-QUIC). This extension aims to support data streams with strict latency requirements by enabling the signaling of a stream's deadline and by combining multipath scheduling, congestion control adaptations, and optional forward error correction (FEC). Moreover, DMTP leverages MP-QUIC's path identifiers to distinguish different end-to-end paths as they may be offered in a Path Aware Network (PAN) such as SCION. This allows an application to select its preferred paths while maintaining interoperability with standard MP-QUIC endpoints. In combination, DMTP enables endpoints to exchange and schedule deadline-aware streams across multiple network paths.
49+
This document proposes the Deadline-aware Multipath Transport Protocol (DMTP) concept as an extension to the Multipath Extension for QUIC (QUIC-MULTIPATH). This extension aims to support data streams with strict latency requirements by enabling the signaling of a stream's deadline and by combining multipath scheduling, congestion control adaptations, and optional forward error correction (FEC). Moreover, DMTP leverages QUIC-MULTIPATH's path identifiers to distinguish different end-to-end paths as they may be offered in a Path Aware Network (PAN) such as SCION. This allows an application to select its preferred paths while maintaining interoperability with standard QUIC-MULTIPATH endpoints. In combination, DMTP enables endpoints to exchange and schedule deadline-aware streams across multiple network paths.
5050

5151
--- middle
5252

5353
# Introduction
5454

55-
The Multipath Extension for QUIC {{MP-QUIC}} enhances performance by simultaneously utilizing multiple paths between endpoints. However, MP-QUIC currently lacks support for strict deadline requirements of real-time applications such as teleoperation, live video streaming, or interactive gaming, which are becoming increasingly important. These applications demand low and bounded latency, and can often tolerate no or only partial retransmission of missing data.
55+
The Multipath Extension for QUIC {{QUIC-MULTIPATH}} enhances performance by simultaneously utilizing multiple paths between endpoints. However, QUIC-MULTIPATH currently lacks support for strict deadline requirements of real-time applications such as teleoperation, live video streaming, or interactive gaming, which are becoming increasingly important. These applications demand low and bounded latency, and can often tolerate no or only partial retransmission of missing data.
5656

5757
Previous work on deadline-aware protocols for QUIC includes the Deadline-aware Transport Protocol {{QUIC-DTP}}, a single-path approach that introduced deadlines for streams but did not exploit multipath capabilities. Meanwhile, our DMTP {{DMTP}} approach allows to take advantage of multiple paths, combined with forward error correction (FEC) and intelligent retransmissions, to significantly increase the fraction of packets meeting their deadlines, especially in the presense of lossy or high-latency links.
5858

59-
By integrating deadline-aware concepts into MP-QUIC, we seek to enable:
59+
By integrating deadline-aware concepts into QUIC-MULTIPATH, we seek to enable:
6060

6161
1. Multipath streams with Deadlines: Scheduling and transmitting data across multiple paths, with strict deadlines of streams driving scheduling decisions.
62-
2. Option for Path-Aware Networking: Support for path selection as offered in Path Aware Networks (e.g., {{SCION}}) by mapping each potential path to an MP-QUIC path identifier.
62+
2. Option for Path-Aware Networking: Support for path selection as offered in Path Aware Networks (e.g., {{SCION}}) by mapping each potential path to an QUIC-MULTIPATH path identifier.
6363
3. Deadline-Based Retransmission / FEC: Combining optional adaptive FEC (such as {{QUIC-AFEC}}) and "smart" retransmissions only when there may still be time left to meet the deadline.
6464

65-
This draft specifies a minimal set of protocol extensions for MP-QUIC to exchange deadline information at the transport layer, so that endpoints can coordinate scheduling for multipath transmissions with strict time constraints. As the first version of our proposal, our goal is to gather community feedback and gauge interest to guide future refinements.
65+
This draft specifies a minimal set of protocol extensions for QUIC-MULTIPATH to exchange deadline information at the transport layer, so that endpoints can coordinate scheduling for multipath transmissions with strict time constraints. As the first version of our proposal, our goal is to gather community feedback and gauge interest to guide future refinements.
6666

6767
## Motivation and Applications
6868

@@ -79,13 +79,13 @@ Real-time applications often produce data blocks (e.g., video frames or control
7979

8080
Within this document:
8181
- "Deadline-aware streams" refers to streams in which an application indicates a time by which data must be delivered, beyond which data is no longer useful.
82-
- "Path" aligns with the MP-QUIC concept: each path is identified by a unique Path ID and it may reference a specific combination of source and destination IP:port tuples or multiple paths as they may be offered in a path aware network, as defined by {{RFC9473}}.
82+
- "Path" aligns with the QUIC-MULTIPATH concept: each path is identified by a unique Path ID and it may reference a specific combination of source and destination IP:port tuples or multiple paths as they may be offered in a path aware network, as defined by {{RFC9473}}.
8383

8484
# Design Overview
8585

86-
## Integrating Deadline-Aware Streams into MP-QUIC
86+
## Integrating Deadline-Aware Streams into QUIC-MULTIPATH
8787

88-
Our design goal is to extend MP-QUIC with minimal changes. The proposed extension enables endpoints to signal a stream's deadline. Implementations that support deadline-aware streams MUST implement:
88+
Our design goal is to extend QUIC-MULTIPATH with minimal changes. The proposed extension enables endpoints to signal a stream's deadline. Implementations that support deadline-aware streams MUST implement:
8989

9090
1. Path Selection: Select paths for transmitting frames, retransmissions and acknowledgements based on metrics relevant to meeting deadlines, including:
9191
- Path latency measurements
@@ -112,20 +112,20 @@ Our design goal is to extend MP-QUIC with minimal changes. The proposed extensio
112112
- Signal deadline misses to the application layer
113113
- Allow applications to specify handling of missed deadlines
114114

115-
### Extensions to MP-QUIC
115+
### Extensions to QUIC-MULTIPATH
116116

117-
Our extensions build on {{MP-QUIC}}'s multipath framework (e.g., paths, path IDs, and validation) and add only:
117+
Our extensions build on {{QUIC-MULTIPATH}}'s multipath framework (e.g., paths, path IDs, and validation) and add only:
118118

119119
- A transport parameter to enable deadline-aware streams.
120120
- A DEADLINE_CONTROL frame to signal stream deadlines.
121121
- An optional DMTP_ACK frame for improved per-path delay feedback.
122122
- Optional AFEC support via an extra transport parameter and two frames for source and repair symbol metadata.
123123

124-
This preserves the original wire format, ensuring interoperability with {{MP-QUIC}} endpoints that do not implement these extensions.
124+
This preserves the original wire format, ensuring interoperability with {{QUIC-MULTIPATH}} endpoints that do not implement these extensions.
125125

126126
## Support for Path-Aware Networks (PAN)
127127

128-
When operating over a path-aware network, endpoints can discover and utilize multiple disjoint or partially disjoint paths. This can be provided, for example, by {{SCION}} or other architectures such as {{SR}}. In such an environment, a single source–destination address pair may yield multiple distinct end-to-end paths, each with unique performance characteristics (e.g., latency, loss rate). These paths can be exposed to the transport layer via distinct Path IDs in {{MP-QUIC}}.
128+
When operating over a path-aware network, endpoints can discover and utilize multiple disjoint or partially disjoint paths. This can be provided, for example, by {{SCION}} or other architectures such as {{SR}}. In such an environment, a single source–destination address pair may yield multiple distinct end-to-end paths, each with unique performance characteristics (e.g., latency, loss rate). These paths can be exposed to the transport layer via distinct Path IDs in {{QUIC-MULTIPATH}}.
129129

130130
This document does not prescribe how endpoints discover and enumerate available paths at the network layer. Rather, it assumes that a PAN can supply multiple viable routes between endpoints. Once discovered, each route is mapped to a unique Path ID, enabling the {{DMTP}} scheduling logic to treat them as distinct transport paths for deadline-aware streams.
131131

@@ -158,7 +158,7 @@ The specific behavior is implementation-specific and MAY be configurable by the
158158

159159
When deadlines are tight and packet losses frequent, relying solely on retransmissions may cause data to miss its deadline. To mitigate this risk, this extension optionally uses Adaptive FEC (AFEC) as proposed in {{QUIC-AFEC}}. AFEC can reduce the need for retransmissions, particularly in networks with random or bursty loss characteristics.
160160

161-
When using AFEC with {{MP-QUIC}}, the Tag Type of the FEC_Tag MUST be set to 1 to indicate "Long Flow Usage". In turn, both source symbol packets and repair symbol packets MUST carry the FEC_Tag frame so that repair packets can be correctly matched to their corresponding source packets across different paths.
161+
When using AFEC with {{QUIC-MULTIPATH}}, the Tag Type of the FEC_Tag MUST be set to 1 to indicate "Long Flow Usage". In turn, both source symbol packets and repair symbol packets MUST carry the FEC_Tag frame so that repair packets can be correctly matched to their corresponding source packets across different paths.
162162

163163
If multiple paths are available, FEC repair packets SHOULD be sent over a path different from the one carrying the source data. This de-correlates losses and increases the likelihood that repair symbols arrive even if other paths experience congestion or packet loss. The coding rate (i.e., the ratio of repair symbols to source symbols) MAY be configured on a per-stream basis, depending on the stream's tolerance for overhead versus its deadline sensitivity.
164164

@@ -185,11 +185,11 @@ For accurate one-way delay measurements, endpoints MAY use synchronized clocks;
185185
1. Path-Aware Networks might provide direct metrics, such as path latency or bandwidth as part of path metadata.
186186
2. Active Probing: If the underlying network does not provide metrics, the endpoint MAY send periodic PING frames or small test packets along each active path.
187187
3. Path Measurement Frames: This draft introduces an optional DMTP_ACK frame ({{dmtp-ack-frame}}) for deeper path measurements, including timestamps of packet receipts to estimate per path one-way delay.
188-
4. Congestion windows, RTT estimates, and packet loss detection from {{MP-QUIC}}'s standard loss recovery can inform scheduling.
188+
4. Congestion windows, RTT estimates, and packet loss detection from {{QUIC-MULTIPATH}}'s standard loss recovery can inform scheduling.
189189

190190
# Extension to Multipath QUIC
191191

192-
This extension builds upon {{MP-QUIC}}. Below we list the protocol additions and modifications. Unless otherwise noted, all rules of MP-QUIC remain.
192+
This extension builds upon {{QUIC-MULTIPATH}}. Below we list the protocol additions and modifications. Unless otherwise noted, all rules of QUIC-MULTIPATH remain.
193193

194194
## Handshake Negotiation and Transport Parameter {#transport-parameter}
195195

@@ -262,7 +262,7 @@ These calls let an application specify deadlines and priorities dynamically.
262262

263263
# Security Considerations
264264

265-
This extension retains all the security features and considerations of {{QUIC}}, {{QUIC-TLS}} and {{MP-QUIC}}.
265+
This extension retains all the security features and considerations of {{QUIC}}, {{QUIC-TLS}} and {{QUIC-MULTIPATH}}.
266266
Nevertheless, it introduces additional considerations:
267267

268268
- Deadline Signaling: Knowledge of deadlines or priorities may be sensitive if it reveals application timing patterns or critical data intervals. Implementations SHOULD carefully handle metadata (e.g., by encrypting frames in 1-RTT packets).
@@ -294,4 +294,4 @@ TBD (2) | DMTP_ACK | {{dmt
294294
# Acknowledgments
295295
{:numbered="false"}
296296

297-
The authors thank the QUIC working group and the designers of both {{MP-QUIC}} and {{QUIC-DTP}} for paving the way for deadline-aware features in QUIC. The concept of scheduling data with deadlines over multiple paths builds on numerous discussions around partial reliability, adaptive FEC, and optimal path selection.
297+
The authors thank the QUIC working group and the designers of both {{QUIC-MULTIPATH}} and {{QUIC-DTP}} for paving the way for deadline-aware features in QUIC. The concept of scheduling data with deadlines over multiple paths builds on numerous discussions around partial reliability, adaptive FEC, and optimal path selection.

0 commit comments

Comments
 (0)