-
Notifications
You must be signed in to change notification settings - Fork 271
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
feat(http/retry): model ReplayBody<B>
with Frame<T>
#3598
Merged
cratelyn
merged 6 commits into
main
from
kate/http-retry.new-frame-polling-same-great-taste
Feb 6, 2025
Merged
feat(http/retry): model ReplayBody<B>
with Frame<T>
#3598
cratelyn
merged 6 commits into
main
from
kate/http-retry.new-frame-polling-same-great-taste
Feb 6, 2025
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
olix0r
approved these changes
Feb 6, 2025
Base automatically changed from
kate/http-retry.outline-the-replay-buffer
to
main
February 6, 2025 15:50
some tests do not set up a tracing subscriber, because they do not use the shared `Test::new()` helper function used elsewhere in this test suite. to provide a trace of the test's execution in the event of a failure, initialize a tracing subscriber in some additional unit tests. Signed-off-by: katelyn martin <kate@buoyant.io>
this commit removes the `cfg(test)` gate on the method exposing `B::is_end_stream()`, and introduces another method also exposing the `size_hint()` method. we will want these in order to implement these methods for `ReplayBody<B>`. Signed-off-by: katelyn martin <kate@buoyant.io>
in the same manner as the existing `frame()` method mimics `http_body_util::BodyExt::frame()`, this commit introduces a new `ForwardCompatibleBody::poll_frame()` method. this allows us to poll the compatibility layer for a `Frame<T>`. Signed-off-by: katelyn martin <kate@buoyant.io>
pr #3559 (dd4fbcd) refactored our trailer peeking body middleware to model its buffering in terms of the `Frame<T>` type used in `http-body`'s 1.0 release. this commit performs a similar change for the other piece of body middleware that super linkerd's retry facilities: `ReplayBody<B>`. the inner body `B` is now wrapped in the `ForwardCompatibleBody<B>` adapter, and we now poll it in terms of frames. NB: polling the underlying in terms of frames has a subtle knock-on effect regarding when we observe the trailers, in the liminal period between this refactor and the subsequent upgrade to hyper 1.0, whilst we must still implement the existing 0.4 interface for `Body` that includes `poll_trailers()`. see the comment above `replay_trailers` for more on this, describing why we now initialize this to `true`. relatedly, this is why we now longer delegate down to `B::poll_trailers` ourselves. it will have already been called by our adapter. `ReplayBody::is_end_stream()` now behaves identically when initially polling a body compared to subsequent replays. this is fine, as `is_end_stream()` is a hint that facilitates optimizations (hyperium/http-body#143). we do still report the end properly, we just won't be quite as prescient on the initial playthrough. see: - linkerd/linkerd2#8733. - #3559 Signed-off-by: katelyn martin <kate@buoyant.io>
this commit introduces some trace-level diagnostics tracking how the replay body has determined whether or not it has reached the end of the stream. Signed-off-by: katelyn martin <kate@buoyant.io>
Signed-off-by: katelyn martin <kate@buoyant.io>
28d2967
to
25bb2b1
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
pr #3559 (dd4fbcd) refactored our trailer peeking body middleware to
model its buffering in terms of the
Frame<T>
type used inhttp-body
's 1.0 release.this branch performs a similar change for the other piece of body
middleware that super linkerd's retry facilities:
ReplayBody<B>
. theinner body
B
is now wrapped in theForwardCompatibleBody<B>
adapter,and we now poll it in terms of frames.
NB: polling the underlying in terms of frames has a subtle knock-on
effect regarding when we observe the trailers, in the liminal period
between this refactor and the subsequent upgrade to hyper 1.0, whilst we
must still implement the existing 0.4 interface for
Body
that includespoll_trailers()
.see the comment above
replay_trailers
for more on this, describing whywe now initialize this to
true
. relatedly, this is why we no longerdelegate down to
B::poll_trailers
ourselves. it will have already beencalled by our adapter.
ReplayBody::is_end_stream()
now behaves identically when initiallypolling a body compared to subsequent replays. this is fine, as
is_end_stream()
is a hint that facilitates optimizations(hyperium/http-body#143). we do still report the end properly, we just
won't be quite as prescient on the initial playthrough.
in the same manner as the existing
frame()
method mimicshttp_body_util::BodyExt::frame()
, this branch introducesa new
ForwardCompatibleBody::poll_frame()
method.this allows us to poll the compatibility layer for a
Frame<T>
.see:
PeekTrailersBody<B>
withFrame<T>
#3559