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

fix: run dns resolution in the same tracing-span as the caller #134

Merged
merged 5 commits into from
Aug 7, 2024

Conversation

joshka
Copy link
Contributor

@joshka joshka commented Jul 3, 2024

This makes it possible to trace the entire request, including DNS
resolution.

The use case for this is to be able to suppress specific requests from
being traced in a situation where the request is used to transmit logs
to a remote server. This would result in an infinite loop of logs being
sent to the remote server. tokio-rs/tokio#6659
has more details.

This makes it possible to trace the entire request, including DNS
resolution.

The use case for this is to be able to suppress specific requests from
being traced in a situation where the request is used to transmit logs
to a remote server. This would result in an infinite loop of logs being
sent to the remote server. tokio-rs/tokio#6659
has more details.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@joshka
Copy link
Contributor Author

joshka commented Jul 18, 2024

Ping

@@ -28,7 +29,8 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
.uri(url)
.body(Empty::<bytes::Bytes>::new())?;

let resp = client.request(req).await?;
let span = info_span!("request", uri = %req.uri());
let resp = client.request(req).instrument(span).await?;
Copy link
Member

Choose a reason for hiding this comment

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

Could we remove this too?

I agree it's useful when debugging, but I worry it distracts from the initial usage of someone just wanting to get the client working.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Copy link
Member

@seanmonstar seanmonstar left a comment

Choose a reason for hiding this comment

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

Thank you!

@seanmonstar seanmonstar merged commit df55aba into hyperium:master Aug 7, 2024
16 checks passed
@arpadav
Copy link
Contributor

arpadav commented Apr 2, 2025

@seanmonstar

This is causing: tokio-rs/tracing#3223 (comment)

Took me a while to track this down. But reverting this change solves this issue.

If you are interested in resolving this, I can think of 2 courses of action:

  1. Reverting this change
  2. Keeping this change, but add #[cfg(feature = "tracing")] to all tracing calls, and then remove tracing in
    client = ["hyper/client", "dep:tracing", "dep:futures-channel", "dep:tower-service"]

(2) This would break people depending on tracing when using the client feature, however. A manual update of their Cargo.toml from hyper-util = { version = "~0.1", features = ["client"] } -> hyper-util = { version = "~0.1", features = ["client", "tracing"] } would be required. Is this desired? Its a quick fix I am more than happy to put in a PR for.

@seanmonstar
Copy link
Member

At this point, I'm happy to accept a PR reverting the whole thing. Providing a slightly more accurate trace isn't worth panics.

@joshka
Copy link
Contributor Author

joshka commented Apr 2, 2025

At this point, I'm happy to accept a PR reverting the whole thing. Providing a slightly more accurate trace isn't worth panics.

I think this would be the right short term approach, but wrong as a long term idea. I think it's important if this is causing panics to revert first and make it possible to work on a replacement that doesn't.

I haven't dug into the tracing bug to understand it well enough to see if there's another approach that would work. It might be worth checking with the tracing devs for any obvious workarounds as a third option.

@joshka
Copy link
Contributor Author

joshka commented Apr 3, 2025

I suggest discussion continue at hyperium/hyper#3870

@arpadav
Copy link
Contributor

arpadav commented Apr 3, 2025

@joshka I completely agree.

It's an extremely unfortunate sequence of events that:

  • reqwest (and other dependents of hyper-util) use the client / legacy client features in Cargo.toml
  • both client/legacy client depend on dep:tracing feature
  • legacy client has correct tracing API usage in DNS resolution future
  • obscure tracing edge-case causes panic
  • as a result, hyper-util gets the short-end of the stick and reverts a change to prevent panicking, despite doing nothing wrong

That's why in #179 I say it can be once again reverted, once tracing contributors/maintainers track down the source of this issue.

Because of this, I'm motivated to make a simple test/dummy repo showing the panic vs the expected behavior. Just spend the last 30 min making it here: https://github.com/arpadav/tracing-span-bug

And then I / others can iterate on the tracing version to see when it starts to work again. Reason being, I am not crazy invested in this and wouldn't be surprised if tracing fixes it without me being aware, so having that repo is good sanity check.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants