Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More text on ACK rate in the applicability draft #386

Merged
merged 4 commits into from Jun 30, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 13 additions & 3 deletions draft-ietf-quic-applicability.md
Expand Up @@ -565,11 +565,21 @@ RESET_STREAM frames, which contain only an error code.

# ACK-only packets on constrained links

The stragegy on sending acknowlegdements in QUIC version 1 is adopted from
TCP, meaning that usually an QUIC implementation is expected to send one
packet containing an ACK frame for each two packets received.
mirjak marked this conversation as resolved.
Show resolved Hide resolved
The cost of sending acknowledgments - in processing cost or link
utilization - could be a significant proportion of available resources if
these resources are constrained. Reducing the rate at which acknowledgments
are generated can preserve these resources and improve overall performance,
for both network processing as well as application-relevant metrics.
these resources are constrained. With TCP network based mechanisim exists
that perform so called ACK thining in such situations. As "only-ACK" packets
are not reliably detecable in QUIC and drop of those packets can have larger
performance impcats than with TCP, network based ACK thining is not suitable
for QUIC traffic. Instead QUIC endpoint need to control the ACK rate
mirjak marked this conversation as resolved.
Show resolved Hide resolved
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/instead QUIC endpoint need/instead a QUIC endpoint needs/

appropriately and some implenentation may even provide an interface to
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/some implementation may even provide an interface to impact/implementations provide an interface that can reduce/ ??? ... although I like MT's comment also which avoids this.

impact the amount of ACK traffic sent. Reducing the rate at which
acknowledgments are generated can preserve constraint resources and
in such a situation improve overall performance, for both network processing
as well as application-relevant metrics.
mirjak marked this conversation as resolved.
Show resolved Hide resolved

# Port Selection and Application Endpoint Discovery {#ports}

Expand Down