-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
net/http: remove persistConn reference from wantConn #62227
Conversation
This PR (HEAD: 9e95e4b) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/522095. Important tips:
|
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Message from Alexander Yastrebov: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Message from Alexander Yastrebov: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Message from Damien Neil: Patch Set 2: Commit-Queue+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Message from Go LUCI: Patch Set 2: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2024-03-06T23:49:25Z","revision":"02586865084bd6612db2e66adab085093b2aa676"} Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Message from Damien Neil: Patch Set 2: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Message from Go LUCI: Patch Set 2: This CL has failed the run. Reason: Tryjob golang/try/x_tools-gotip-linux-amd64 has failed with summary (view all results): FAILURE
Error: Links:
Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Message from Go LUCI: Patch Set 2: LUCI-TryBot-Result-1 Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Message from Damien Neil: Patch Set 2: Commit-Queue+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Message from Go LUCI: Patch Set 2: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2024-03-07T00:46:02Z","revision":"02586865084bd6612db2e66adab085093b2aa676"} Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Message from Damien Neil: Patch Set 2: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Message from Go LUCI: Patch Set 2: This CL has failed the run. Reason: Tryjob golang/try/x_tools-gotip-linux-amd64 has failed with summary (view all results): FAILURE
Error: Links:
Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Transport getConn creates wantConn w, tries to obtain idle connection for it based on the w.key and, when there is no idle connection, puts wantConn into idleConnWait wantConnQueue. Then getConn dials connection for w in a goroutine and blocks. After dial succeeds getConn unblocks and returns connection to the caller. At this point w is stored in the idleConnWait and will not be evicted until another wantConn with the same w.key is requested or alive connection returned into the idle pool which may not happen e.g. if server closes the connection. The problem is that even after tryDeliver succeeds w references persistConn wrapper that allocates bufio.Reader and bufio.Writer and prevents them from being garbage collected. To fix the problem this change removes persistConn and error references from wantConn and delivers them via channel to getConn. This way wantConn could be kept in wantConnQueues arbitrary long. Fixes golang#43966 Fixes golang#50798
9e95e4b
to
027a083
Compare
This PR (HEAD: 027a083) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/522095. Important tips:
|
Message from Alexander Yastrebov: Patch Set 3: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Message from Damien Neil: Patch Set 3: Commit-Queue+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Message from Go LUCI: Patch Set 3: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2024-03-07T20:49:51Z","revision":"0928a59671564396c5bd947f7282710e34b780ab"} Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Message from Damien Neil: Patch Set 3: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Message from Go LUCI: Patch Set 3: This CL has passed the run Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Message from Go LUCI: Patch Set 3: LUCI-TryBot-Result+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Message from Damien Neil: Patch Set 3: Auto-Submit+1 Code-Review+2 Please don’t reply on this GitHub thread. Visit golang.org/cl/522095. |
Transport getConn creates wantConn w, tries to obtain idle connection for it based on the w.key and, when there is no idle connection, puts wantConn into idleConnWait wantConnQueue. Then getConn dials connection for w in a goroutine and blocks. After dial succeeds getConn unblocks and returns connection to the caller. At this point w is stored in the idleConnWait and will not be evicted until another wantConn with the same w.key is requested or alive connection returned into the idle pool which may not happen e.g. if server closes the connection. The problem is that even after tryDeliver succeeds w references persistConn wrapper that allocates bufio.Reader and bufio.Writer and prevents them from being garbage collected. To fix the problem this change removes persistConn and error references from wantConn and delivers them via channel to getConn. This way wantConn could be kept in wantConnQueues arbitrary long. Fixes #43966 Fixes #50798 Change-Id: I77942552f7db04c225fb40d770b3101a8cfe655d GitHub-Last-Rev: 027a083 GitHub-Pull-Request: #62227 Reviewed-on: https://go-review.googlesource.com/c/go/+/522095 Reviewed-by: Damien Neil <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Michael Knyszek <[email protected]> Auto-Submit: Damien Neil <[email protected]>
This PR is being closed because golang.org/cl/522095 has been merged. |
We have been seeing intermittent test failures for `TestUseCerts` and `TestJWTAuthWithCustomCACert`. These failures have been due to a leaked goroutine that establishes a TLS handshake. The change is to ignore this goroutine while checking for leaked goroutines. Added a TODO to revisit this once we update Go to 1.23, as this seems to have been fixed: golang/go#62227. Epic: CRDB-36214, CRDB-40867 Fixes: cockroachdb#119052, cockroachdb#128214 Release note: None
129802: security,jwtauthccl: Fix test failures due to leaked goroutines r=souravcrl a=pritesh-lahoti We have been seeing intermittent test failures for `TestUseCerts` and `TestJWTAuthWithCustomCACert`. These failures have been due to a leaked goroutine that establishes a TLS handshake. The change is to ignore this goroutine while checking for leaked goroutines. Added a TODO to revisit this once we update Go to 1.23, as this seems to have been fixed: golang/go#62227. Epic: CRDB-36214, CRDB-40867 Fixes: #119052, #128214 Release note: None Co-authored-by: Pritesh Lahoti <[email protected]>
We have been seeing intermittent test failures for `TestUseCerts` and `TestJWTAuthWithCustomCACert`. These failures have been due to a leaked goroutine that establishes a TLS handshake. The change is to ignore this goroutine while checking for leaked goroutines. Added a TODO to revisit this once we update Go to 1.23, as this seems to have been fixed: golang/go#62227. Epic: CRDB-36214, CRDB-40867 Fixes: #119052, #128214 Release note: None
We have been seeing intermittent test failures for `TestUseCerts` and `TestJWTAuthWithCustomCACert`. These failures have been due to a leaked goroutine that establishes a TLS handshake. The change is to ignore this goroutine while checking for leaked goroutines. Added a TODO to revisit this once we update Go to 1.23, as this seems to have been fixed: golang/go#62227. Epic: CRDB-36214, CRDB-40867 Fixes: #119052, #128214 Release note: None
We have been seeing intermittent test failures for `TestUseCerts` and `TestJWTAuthWithCustomCACert`. These failures have been due to a leaked goroutine that establishes a TLS handshake. The change is to ignore this goroutine while checking for leaked goroutines. Added a TODO to revisit this once we update Go to 1.23, as this seems to have been fixed: golang/go#62227. Epic: CRDB-36214, CRDB-40867 Fixes: #119052, #128214 Release note: None
Transport getConn creates wantConn w, tries to obtain idle connection for it
based on the w.key and, when there is no idle connection, puts wantConn into
idleConnWait wantConnQueue.
Then getConn dials connection for w in a goroutine and blocks.
After dial succeeds getConn unblocks and returns connection to the caller.
At this point w is stored in the idleConnWait and will not be evicted
until another wantConn with the same w.key is requested or alive
connection returned into the idle pool which may not happen e.g. if
server closes the connection.
The problem is that even after tryDeliver succeeds w references
persistConn wrapper that allocates bufio.Reader and bufio.Writer and
prevents them from being garbage collected.
To fix the problem this change removes persistConn and error references
from wantConn and delivers them via channel to getConn.
This way wantConn could be kept in wantConnQueues arbitrary long.
Fixes #43966
Fixes #50798