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.
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
8350279: HttpClient: Add a new HttpResponse method to identify connections #24154
base: master
Are you sure you want to change the base?
8350279: HttpClient: Add a new HttpResponse method to identify connections #24154
Changes from all commits
c30d5bb
7cde035
8f63c22
9765c08
4c5d559
5c57d05
f8b0de5
2857dde
028999a
31a5647
a08c0cf
59a11cc
883135d
d64a901
42ff0fc
bcf106b
e32a484
5b418fd
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the API documentation on
HttpResponse.connectionLabel()
we talk about the connection label being unique within aHttpClient
scope. i.e. two differentHttpClient
instances could have the same connectionLabel for a connection. I think that's the right scoping.So given that, having a
static
field on aHttpConnection
which keeps track of a connection label, may not be the right place to keep track of that state. In this proposed form, no two connections in two different HttpClient instances will ever have the same connectionLabel. I think this counter should probably be present on theHttpClientImpl
as an instance field.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe that's OK. We could go either way - but I'd rather keep the label unique regardless of the client because otherwise we would also need to include the client id in the debug traces (ATM we only have the label). If it's unique in the scope of the VM it's a fortiori unique in the scope of the client instance.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jaikiran, what you're suggesting makes sense. I'm still exploring the interplay between the connection label and HTTP/3 server pushes. I will return back to your suggestion soon.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, but this is neither required by the connection label contract. That is, the contract doesn't say that they must have overlapping connection labels. It only states connection labels are unique-per-client. Our implementation is more stricter than that: unique-per-VM, but that is just an implementation detail.
I've given this approach an attempt. Though I find it difficult to reason about in the code that a counter only
HttpConnection
uses is situated inHttpClientImpl
, just to make twoHttpConnection
s from differentHttpClientImpl
s share the connection label.I also agree with @dfuch that having a unique-per-VM connection label helps with troubleshooting too.
@jaikiran, unless you're strongly opinionated about this, I prefer to leave the connection label counter in
HttpConnection
. How shall we proceed?