Skip to content

Commit fd3025b

Browse files
authored
Revert "ConnPool check fd for bad conns (#1824)" (#1849)
This reverts commit 346bfaf.
1 parent 67ae445 commit fd3025b

10 files changed

+18
-204
lines changed

internal/pool/conncheck.go

-45
This file was deleted.

internal/pool/conncheck_dummy.go

-9
This file was deleted.

internal/pool/conncheck_test.go

-46
This file was deleted.

internal/pool/main_test.go

+1-86
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,9 @@ package pool_test
22

33
import (
44
"context"
5-
"fmt"
65
"net"
76
"sync"
8-
"syscall"
97
"testing"
10-
"time"
118

129
. "github.com/onsi/ginkgo"
1310
. "github.com/onsi/gomega"
@@ -35,87 +32,5 @@ func perform(n int, cbs ...func(int)) {
3532
}
3633

3734
func dummyDialer(context.Context) (net.Conn, error) {
38-
// return &net.TCPConn{}, nil
39-
return newDummyConn(), nil
40-
}
41-
42-
func newDummyConn() net.Conn {
43-
return &dummyConn{
44-
rawConn: &dummyRawConn{},
45-
}
46-
}
47-
48-
var _ net.Conn = (*dummyConn)(nil)
49-
var _ syscall.Conn = (*dummyConn)(nil)
50-
51-
type dummyConn struct {
52-
rawConn *dummyRawConn
53-
}
54-
55-
func (d *dummyConn) SyscallConn() (syscall.RawConn, error) {
56-
return d.rawConn, nil
57-
}
58-
59-
var errDummy = fmt.Errorf("dummyConn err")
60-
61-
func (d *dummyConn) Read(b []byte) (n int, err error) {
62-
return 0, errDummy
63-
}
64-
65-
func (d *dummyConn) Write(b []byte) (n int, err error) {
66-
return 0, errDummy
67-
}
68-
69-
func (d *dummyConn) Close() error {
70-
d.rawConn.Close()
71-
return nil
72-
}
73-
74-
func (d *dummyConn) LocalAddr() net.Addr {
75-
return &net.TCPAddr{}
76-
}
77-
78-
func (d *dummyConn) RemoteAddr() net.Addr {
79-
return &net.TCPAddr{}
80-
}
81-
82-
func (d *dummyConn) SetDeadline(t time.Time) error {
83-
return nil
84-
}
85-
86-
func (d *dummyConn) SetReadDeadline(t time.Time) error {
87-
return nil
88-
}
89-
90-
func (d *dummyConn) SetWriteDeadline(t time.Time) error {
91-
return nil
92-
}
93-
94-
var _ syscall.RawConn = (*dummyRawConn)(nil)
95-
96-
type dummyRawConn struct {
97-
closed bool
98-
mux sync.Mutex
99-
}
100-
101-
func (d *dummyRawConn) Control(f func(fd uintptr)) error {
102-
return nil
103-
}
104-
105-
func (d *dummyRawConn) Read(f func(fd uintptr) (done bool)) error {
106-
d.mux.Lock()
107-
defer d.mux.Unlock()
108-
if d.closed {
109-
return fmt.Errorf("dummyRawConn closed")
110-
}
111-
return nil
112-
}
113-
114-
func (d *dummyRawConn) Write(f func(fd uintptr) (done bool)) error {
115-
return nil
116-
}
117-
func (d *dummyRawConn) Close() {
118-
d.mux.Lock()
119-
d.closed = true
120-
d.mux.Unlock()
35+
return &net.TCPConn{}, nil
12136
}

internal/pool/pool.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ func (p *ConnPool) reapStaleConn() *Conn {
520520

521521
func (p *ConnPool) isStaleConn(cn *Conn) bool {
522522
if p.opt.IdleTimeout == 0 && p.opt.MaxConnAge == 0 {
523-
return connCheck(cn.netConn) != nil
523+
return false
524524
}
525525

526526
now := time.Now()
@@ -531,5 +531,5 @@ func (p *ConnPool) isStaleConn(cn *Conn) bool {
531531
return true
532532
}
533533

534-
return connCheck(cn.netConn) != nil
534+
return false
535535
}

internal/pool/pool_test.go

+2-5
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import (
66
"testing"
77
"time"
88

9+
"github.com/go-redis/redis/v8/internal/pool"
10+
911
. "github.com/onsi/ginkgo"
1012
. "github.com/onsi/gomega"
11-
12-
"github.com/go-redis/redis/v8/internal/pool"
1313
)
1414

1515
var _ = Describe("ConnPool", func() {
@@ -285,8 +285,6 @@ var _ = Describe("conns reaper", func() {
285285
cn.SetUsedAt(time.Now().Add(-2 * idleTimeout))
286286
case "aged":
287287
cn.SetCreatedAt(time.Now().Add(-2 * maxAge))
288-
case "conncheck":
289-
cn.Close()
290288
}
291289
conns = append(conns, cn)
292290
staleConns = append(staleConns, cn)
@@ -373,7 +371,6 @@ var _ = Describe("conns reaper", func() {
373371

374372
assert("idle")
375373
assert("aged")
376-
assert("conncheck")
377374
})
378375

379376
var _ = Describe("race", func() {

main_test.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ import (
1212
"testing"
1313
"time"
1414

15+
"github.com/go-redis/redis/v8"
16+
1517
. "github.com/onsi/ginkgo"
1618
. "github.com/onsi/gomega"
17-
18-
"github.com/go-redis/redis/v8"
1919
)
2020

2121
const (
@@ -117,7 +117,7 @@ func TestGinkgoSuite(t *testing.T) {
117117
RunSpecs(t, "go-redis")
118118
}
119119

120-
// ------------------------------------------------------------------------------
120+
//------------------------------------------------------------------------------
121121

122122
func redisOptions() *redis.Options {
123123
return &redis.Options{
@@ -364,7 +364,7 @@ func startSentinel(port, masterName, masterPort string) (*redisProcess, error) {
364364
return p, nil
365365
}
366366

367-
// ------------------------------------------------------------------------------
367+
//------------------------------------------------------------------------------
368368

369369
type badConnError string
370370

@@ -409,7 +409,7 @@ func (cn *badConn) Write([]byte) (int, error) {
409409
return 0, badConnError("bad connection")
410410
}
411411

412-
// ------------------------------------------------------------------------------
412+
//------------------------------------------------------------------------------
413413

414414
type hook struct {
415415
beforeProcess func(ctx context.Context, cmd redis.Cmder) (context.Context, error)

pool_test.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,8 @@ var _ = Describe("pool", func() {
8787
cn.SetNetConn(&badConn{})
8888
client.Pool().Put(ctx, cn)
8989

90-
// connCheck will automatically remove damaged connections.
9190
err = client.Ping(ctx).Err()
92-
Expect(err).NotTo(HaveOccurred())
91+
Expect(err).To(MatchError("bad connection"))
9392

9493
val, err := client.Ping(ctx).Result()
9594
Expect(err).NotTo(HaveOccurred())

sentinel_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ var _ = Describe("NewFailoverClusterClient", func() {
191191
err = master.Shutdown(ctx).Err()
192192
Expect(err).NotTo(HaveOccurred())
193193
Eventually(func() error {
194-
return master.Ping(ctx).Err()
194+
return sentinelMaster.Ping(ctx).Err()
195195
}, "15s", "100ms").Should(HaveOccurred())
196196

197197
// Check that client picked up new master.

tx_test.go

+6-3
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ var _ = Describe("Tx", func() {
123123
Expect(num).To(Equal(int64(N)))
124124
})
125125

126-
It("should remove from bad connection", func() {
126+
It("should recover from bad connection", func() {
127127
// Put bad connection in the pool.
128128
cn, err := client.Pool().Get(context.Background())
129129
Expect(err).NotTo(HaveOccurred())
@@ -134,14 +134,17 @@ var _ = Describe("Tx", func() {
134134
do := func() error {
135135
err := client.Watch(ctx, func(tx *redis.Tx) error {
136136
_, err := tx.TxPipelined(ctx, func(pipe redis.Pipeliner) error {
137-
return pipe.Ping(ctx).Err()
137+
pipe.Ping(ctx)
138+
return nil
138139
})
139140
return err
140141
})
141142
return err
142143
}
143144

144-
// connCheck will automatically remove damaged connections.
145+
err = do()
146+
Expect(err).To(MatchError("bad connection"))
147+
145148
err = do()
146149
Expect(err).NotTo(HaveOccurred())
147150
})

0 commit comments

Comments
 (0)