Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
883048da
Commit
883048da
authored
Mar 31, 2011
by
Brad Fitzpatrick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
http: add Transport.MaxIdleConnsPerHost
R=rsc CC=golang-dev
https://golang.org/cl/4280079
parent
10694c81
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
73 additions
and
3 deletions
+73
-3
transport.go
src/pkg/http/transport.go
+20
-2
transport_test.go
src/pkg/http/transport_test.go
+53
-1
No files found.
src/pkg/http/transport.go
View file @
883048da
...
@@ -24,6 +24,10 @@ import (
...
@@ -24,6 +24,10 @@ import (
// environment variables.
// environment variables.
var
DefaultTransport
RoundTripper
=
&
Transport
{}
var
DefaultTransport
RoundTripper
=
&
Transport
{}
// DefaultMaxIdleConnsPerHost is the default value of Transport's
// MaxIdleConnsPerHost.
const
DefaultMaxIdleConnsPerHost
=
2
// Transport is an implementation of RoundTripper that supports http,
// Transport is an implementation of RoundTripper that supports http,
// https, and http proxies (for either http or https with CONNECT).
// https, and http proxies (for either http or https with CONNECT).
// Transport can also cache connections for future re-use.
// Transport can also cache connections for future re-use.
...
@@ -31,11 +35,17 @@ type Transport struct {
...
@@ -31,11 +35,17 @@ type Transport struct {
lk
sync
.
Mutex
lk
sync
.
Mutex
idleConn
map
[
string
][]
*
persistConn
idleConn
map
[
string
][]
*
persistConn
// TODO: tunables on max cached connections (total, per-server), duration
// TODO: tunable on global max cached connections
// TODO: tunable on timeout on cached connections
// TODO: optional pipelining
// TODO: optional pipelining
IgnoreEnvironment
bool
// don't look at environment variables for proxy configuration
IgnoreEnvironment
bool
// don't look at environment variables for proxy configuration
DisableKeepAlives
bool
DisableKeepAlives
bool
// MaxIdleConnsPerHost, if non-zero, controls the maximum idle
// (keep-alive) to keep to keep per-host. If zero,
// DefaultMaxIdleConnsPerHost is used.
MaxIdleConnsPerHost
int
}
}
// RoundTrip implements the RoundTripper interface.
// RoundTrip implements the RoundTripper interface.
...
@@ -147,7 +157,7 @@ func (cm *connectMethod) proxyAuth() string {
...
@@ -147,7 +157,7 @@ func (cm *connectMethod) proxyAuth() string {
func
(
t
*
Transport
)
putIdleConn
(
pconn
*
persistConn
)
{
func
(
t
*
Transport
)
putIdleConn
(
pconn
*
persistConn
)
{
t
.
lk
.
Lock
()
t
.
lk
.
Lock
()
defer
t
.
lk
.
Unlock
()
defer
t
.
lk
.
Unlock
()
if
t
.
DisableKeepAlives
{
if
t
.
DisableKeepAlives
||
t
.
MaxIdleConnsPerHost
<
0
{
pconn
.
close
()
pconn
.
close
()
return
return
}
}
...
@@ -155,6 +165,14 @@ func (t *Transport) putIdleConn(pconn *persistConn) {
...
@@ -155,6 +165,14 @@ func (t *Transport) putIdleConn(pconn *persistConn) {
return
return
}
}
key
:=
pconn
.
cacheKey
key
:=
pconn
.
cacheKey
max
:=
t
.
MaxIdleConnsPerHost
if
max
==
0
{
max
=
DefaultMaxIdleConnsPerHost
}
if
len
(
t
.
idleConn
[
key
])
>=
max
{
pconn
.
close
()
return
}
t
.
idleConn
[
key
]
=
append
(
t
.
idleConn
[
key
],
pconn
)
t
.
idleConn
[
key
]
=
append
(
t
.
idleConn
[
key
],
pconn
)
}
}
...
...
src/pkg/http/transport_test.go
View file @
883048da
...
@@ -164,7 +164,7 @@ func TestTransportIdleCacheKeys(t *testing.T) {
...
@@ -164,7 +164,7 @@ func TestTransportIdleCacheKeys(t *testing.T) {
}
}
if
e
:=
"|http|"
+
ts
.
Listener
.
Addr
()
.
String
();
keys
[
0
]
!=
e
{
if
e
:=
"|http|"
+
ts
.
Listener
.
Addr
()
.
String
();
keys
[
0
]
!=
e
{
t
.
Log
f
(
"Expected idle cache key %q; got %q"
,
e
,
keys
[
0
])
t
.
Error
f
(
"Expected idle cache key %q; got %q"
,
e
,
keys
[
0
])
}
}
tr
.
CloseIdleConnections
()
tr
.
CloseIdleConnections
()
...
@@ -173,6 +173,58 @@ func TestTransportIdleCacheKeys(t *testing.T) {
...
@@ -173,6 +173,58 @@ func TestTransportIdleCacheKeys(t *testing.T) {
}
}
}
}
func
TestTransportMaxPerHostIdleConns
(
t
*
testing
.
T
)
{
ch
:=
make
(
chan
string
)
ts
:=
httptest
.
NewServer
(
HandlerFunc
(
func
(
w
ResponseWriter
,
r
*
Request
)
{
fmt
.
Fprintf
(
w
,
"%s"
,
<-
ch
)
}))
defer
ts
.
Close
()
maxIdleConns
:=
2
tr
:=
&
Transport
{
DisableKeepAlives
:
false
,
MaxIdleConnsPerHost
:
maxIdleConns
}
c
:=
&
Client
{
Transport
:
tr
}
// Start 3 outstanding requests (will hang until we write to
// ch)
donech
:=
make
(
chan
bool
)
doReq
:=
func
()
{
c
.
Get
(
ts
.
URL
)
donech
<-
true
}
go
doReq
()
go
doReq
()
go
doReq
()
if
e
,
g
:=
0
,
len
(
tr
.
IdleConnKeysForTesting
());
e
!=
g
{
t
.
Fatalf
(
"Before writes, expected %d idle conn cache keys; got %d"
,
e
,
g
)
}
ch
<-
"res1"
<-
donech
keys
:=
tr
.
IdleConnKeysForTesting
()
if
e
,
g
:=
1
,
len
(
keys
);
e
!=
g
{
t
.
Fatalf
(
"after first response, expected %d idle conn cache keys; got %d"
,
e
,
g
)
}
cacheKey
:=
"|http|"
+
ts
.
Listener
.
Addr
()
.
String
()
if
keys
[
0
]
!=
cacheKey
{
t
.
Fatalf
(
"Expected idle cache key %q; got %q"
,
cacheKey
,
keys
[
0
])
}
if
e
,
g
:=
1
,
tr
.
IdleConnCountForTesting
(
cacheKey
);
e
!=
g
{
t
.
Errorf
(
"after first response, expected %d idle conns; got %d"
,
e
,
g
)
}
ch
<-
"res2"
<-
donech
if
e
,
g
:=
2
,
tr
.
IdleConnCountForTesting
(
cacheKey
);
e
!=
g
{
t
.
Errorf
(
"after second response, expected %d idle conns; got %d"
,
e
,
g
)
}
ch
<-
"res3"
<-
donech
if
e
,
g
:=
maxIdleConns
,
tr
.
IdleConnCountForTesting
(
cacheKey
);
e
!=
g
{
t
.
Errorf
(
"after third response, still expected %d idle conns; got %d"
,
e
,
g
)
}
}
func
TestTransportServerClosingUnexpectedly
(
t
*
testing
.
T
)
{
func
TestTransportServerClosingUnexpectedly
(
t
*
testing
.
T
)
{
ts
:=
httptest
.
NewServer
(
hostPortHandler
)
ts
:=
httptest
.
NewServer
(
hostPortHandler
)
defer
ts
.
Close
()
defer
ts
.
Close
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment