redis/internal/pool/pool.go

523 lines
9.4 KiB
Go
Raw Normal View History

package pool
import (
2019-06-04 14:05:29 +03:00
"context"
"errors"
2016-03-12 13:41:02 +03:00
"net"
2016-03-17 19:00:47 +03:00
"sync"
"sync/atomic"
"time"
2020-03-11 17:29:16 +03:00
"github.com/go-redis/redis/v8/internal"
2016-04-09 14:52:01 +03:00
)
2020-07-16 09:52:07 +03:00
var (
ErrClosed = errors.New("redis: client is closed")
ErrPoolTimeout = errors.New("redis: connection pool timeout")
)
2016-03-17 19:00:47 +03:00
var timers = sync.Pool{
New: func() interface{} {
t := time.NewTimer(time.Hour)
t.Stop()
return t
2016-03-17 19:00:47 +03:00
},
}
// Stats contains pool state information and accumulated stats.
type Stats struct {
Hits uint32 // number of times free connection was found in the pool
Misses uint32 // number of times free connection was NOT found in the pool
Timeouts uint32 // number of times a wait timeout occurred
TotalConns uint32 // number of total connections in the pool
2018-05-28 17:27:24 +03:00
IdleConns uint32 // number of idle connections in the pool
StaleConns uint32 // number of stale connections removed from the pool
}
type Pooler interface {
2019-06-14 16:00:03 +03:00
NewConn(context.Context) (*Conn, error)
CloseConn(*Conn) error
2019-06-04 14:05:29 +03:00
Get(context.Context) (*Conn, error)
2018-05-28 17:27:24 +03:00
Put(*Conn)
2019-08-08 10:36:13 +03:00
Remove(*Conn, error)
Len() int
2018-05-28 17:27:24 +03:00
IdleLen() int
Stats() *Stats
Close() error
}
type Options struct {
2019-08-18 17:03:32 +03:00
Dialer func(context.Context) (net.Conn, error)
OnClose func(*Conn) error
PoolSize int
2018-05-28 17:27:24 +03:00
MinIdleConns int
2018-08-12 10:08:21 +03:00
MaxConnAge time.Duration
PoolTimeout time.Duration
IdleTimeout time.Duration
IdleCheckFrequency time.Duration
}
type lastDialErrorWrap struct {
err error
}
type ConnPool struct {
opt *Options
2017-10-11 18:03:55 +03:00
dialErrorsNum uint32 // atomic
lastDialError atomic.Value
2016-03-17 19:00:47 +03:00
queue chan struct{}
2018-05-28 17:27:24 +03:00
connsMu sync.Mutex
conns []*Conn
idleConns []*Conn
poolSize int
idleConnsLen int
stats Stats
_closed uint32 // atomic
closedCh chan struct{}
}
var _ Pooler = (*ConnPool)(nil)
func NewConnPool(opt *Options) *ConnPool {
p := &ConnPool{
opt: opt,
queue: make(chan struct{}, opt.PoolSize),
conns: make([]*Conn, 0, opt.PoolSize),
2018-05-28 17:27:24 +03:00
idleConns: make([]*Conn, 0, opt.PoolSize),
closedCh: make(chan struct{}),
2016-03-12 15:42:12 +03:00
}
2020-04-30 12:46:50 +03:00
2020-04-30 09:34:48 +03:00
p.connsMu.Lock()
p.checkMinIdleConns()
2020-04-30 09:34:48 +03:00
p.connsMu.Unlock()
2018-05-28 17:27:24 +03:00
if opt.IdleTimeout > 0 && opt.IdleCheckFrequency > 0 {
go p.reaper(opt.IdleCheckFrequency)
}
2018-05-28 17:27:24 +03:00
2016-03-17 19:00:47 +03:00
return p
}
2018-05-28 17:27:24 +03:00
func (p *ConnPool) checkMinIdleConns() {
if p.opt.MinIdleConns == 0 {
return
}
for p.poolSize < p.opt.PoolSize && p.idleConnsLen < p.opt.MinIdleConns {
2018-05-28 17:27:24 +03:00
p.poolSize++
p.idleConnsLen++
2019-07-28 10:53:40 +03:00
go func() {
err := p.addIdleConn()
if err != nil {
p.connsMu.Lock()
p.poolSize--
p.idleConnsLen--
p.connsMu.Unlock()
}
}()
2018-05-28 17:27:24 +03:00
}
}
2019-07-28 10:53:40 +03:00
func (p *ConnPool) addIdleConn() error {
2019-08-07 16:12:01 +03:00
cn, err := p.dialConn(context.TODO(), true)
2018-05-28 17:27:24 +03:00
if err != nil {
2019-07-28 10:53:40 +03:00
return err
2018-05-28 17:27:24 +03:00
}
p.connsMu.Lock()
p.conns = append(p.conns, cn)
p.idleConns = append(p.idleConns, cn)
p.connsMu.Unlock()
2019-07-28 10:53:40 +03:00
return nil
2018-05-28 17:27:24 +03:00
}
2019-06-14 16:00:03 +03:00
func (p *ConnPool) NewConn(ctx context.Context) (*Conn, error) {
2019-08-07 16:12:01 +03:00
return p.newConn(ctx, false)
2018-05-28 17:27:24 +03:00
}
2019-08-07 16:12:01 +03:00
func (p *ConnPool) newConn(ctx context.Context, pooled bool) (*Conn, error) {
cn, err := p.dialConn(ctx, pooled)
2018-05-28 17:27:24 +03:00
if err != nil {
return nil, err
}
p.connsMu.Lock()
p.conns = append(p.conns, cn)
2018-05-28 17:27:24 +03:00
if pooled {
2019-06-17 12:32:40 +03:00
// If pool is full remove the cn on next Put.
if p.poolSize >= p.opt.PoolSize {
2018-05-28 17:27:24 +03:00
cn.pooled = false
2019-06-17 12:32:40 +03:00
} else {
p.poolSize++
2018-05-28 17:27:24 +03:00
}
}
2018-05-28 17:27:24 +03:00
p.connsMu.Unlock()
return cn, nil
}
2019-08-07 16:12:01 +03:00
func (p *ConnPool) dialConn(ctx context.Context, pooled bool) (*Conn, error) {
if p.closed() {
return nil, ErrClosed
}
if atomic.LoadUint32(&p.dialErrorsNum) >= uint32(p.opt.PoolSize) {
2017-10-11 18:03:55 +03:00
return nil, p.getLastDialError()
}
netConn, err := p.opt.Dialer(ctx)
2016-03-12 13:41:02 +03:00
if err != nil {
p.setLastDialError(err)
if atomic.AddUint32(&p.dialErrorsNum, 1) == uint32(p.opt.PoolSize) {
go p.tryDial()
}
2016-03-12 13:41:02 +03:00
return nil, err
}
internal.NewConnectionsCounter.Add(ctx, 1)
2018-05-28 17:27:24 +03:00
cn := NewConn(netConn)
cn.pooled = pooled
return cn, nil
2016-03-12 13:41:02 +03:00
}
func (p *ConnPool) tryDial() {
for {
if p.closed() {
return
}
2019-06-15 10:34:38 +03:00
conn, err := p.opt.Dialer(context.Background())
if err != nil {
p.setLastDialError(err)
time.Sleep(time.Second)
continue
}
atomic.StoreUint32(&p.dialErrorsNum, 0)
_ = conn.Close()
return
}
}
func (p *ConnPool) setLastDialError(err error) {
p.lastDialError.Store(&lastDialErrorWrap{err: err})
}
2017-10-11 18:03:55 +03:00
func (p *ConnPool) getLastDialError() error {
err, _ := p.lastDialError.Load().(*lastDialErrorWrap)
if err != nil {
return err.err
}
return nil
}
// Get returns existed connection from the pool or creates a new one.
func (p *ConnPool) Get(ctx context.Context) (*Conn, error) {
if p.closed() {
2018-05-28 17:27:24 +03:00
return nil, ErrClosed
}
err := p.waitTurn(ctx)
2018-05-28 17:27:24 +03:00
if err != nil {
return nil, err
2016-03-17 19:00:47 +03:00
}
for {
2018-05-28 17:27:24 +03:00
p.connsMu.Lock()
2018-05-28 17:27:24 +03:00
cn := p.popIdle()
2018-05-28 17:27:24 +03:00
p.connsMu.Unlock()
2016-03-17 19:00:47 +03:00
if cn == nil {
break
}
2018-08-12 10:08:21 +03:00
if p.isStaleConn(cn) {
_ = p.CloseConn(cn)
continue
}
atomic.AddUint32(&p.stats.Hits, 1)
2018-05-28 17:27:24 +03:00
return cn, nil
2016-03-17 19:00:47 +03:00
}
atomic.AddUint32(&p.stats.Misses, 1)
2019-08-07 16:12:01 +03:00
newcn, err := p.newConn(ctx, true)
2016-03-17 19:00:47 +03:00
if err != nil {
2018-05-28 17:27:24 +03:00
p.freeTurn()
return nil, err
}
2018-05-28 17:27:24 +03:00
return newcn, nil
}
func (p *ConnPool) getTurn() {
p.queue <- struct{}{}
}
func (p *ConnPool) waitTurn(ctx context.Context) error {
2019-07-04 11:18:06 +03:00
select {
case <-ctx.Done():
return ctx.Err()
default:
}
2018-05-28 17:27:24 +03:00
select {
case p.queue <- struct{}{}:
return nil
default:
2019-07-04 11:18:06 +03:00
}
timer := timers.Get().(*time.Timer)
timer.Reset(p.opt.PoolTimeout)
select {
case <-ctx.Done():
if !timer.Stop() {
<-timer.C
}
timers.Put(timer)
return ctx.Err()
case p.queue <- struct{}{}:
if !timer.Stop() {
<-timer.C
2018-05-28 17:27:24 +03:00
}
2019-07-04 11:18:06 +03:00
timers.Put(timer)
return nil
case <-timer.C:
timers.Put(timer)
atomic.AddUint32(&p.stats.Timeouts, 1)
return ErrPoolTimeout
2018-05-28 17:27:24 +03:00
}
}
func (p *ConnPool) freeTurn() {
<-p.queue
}
func (p *ConnPool) popIdle() *Conn {
if len(p.idleConns) == 0 {
return nil
}
2018-05-28 17:27:24 +03:00
idx := len(p.idleConns) - 1
cn := p.idleConns[idx]
p.idleConns = p.idleConns[:idx]
2018-05-28 17:27:24 +03:00
p.idleConnsLen--
p.checkMinIdleConns()
return cn
}
2018-05-28 17:27:24 +03:00
func (p *ConnPool) Put(cn *Conn) {
2019-08-09 15:11:52 +03:00
if cn.rd.Buffered() > 0 {
internal.Logger.Printf("Conn has unread data")
p.Remove(cn, BadConnError{})
return
}
2018-05-28 17:27:24 +03:00
if !cn.pooled {
2019-08-08 10:36:13 +03:00
p.Remove(cn, nil)
2018-05-28 17:27:24 +03:00
return
}
p.connsMu.Lock()
2018-05-28 17:27:24 +03:00
p.idleConns = append(p.idleConns, cn)
2018-05-28 17:27:24 +03:00
p.idleConnsLen++
p.connsMu.Unlock()
2018-05-28 17:27:24 +03:00
p.freeTurn()
}
2019-08-08 10:36:13 +03:00
func (p *ConnPool) Remove(cn *Conn, reason error) {
2019-06-17 12:32:40 +03:00
p.removeConnWithLock(cn)
2018-05-28 17:27:24 +03:00
p.freeTurn()
_ = p.closeConn(cn)
}
func (p *ConnPool) CloseConn(cn *Conn) error {
2019-06-17 12:32:40 +03:00
p.removeConnWithLock(cn)
2018-05-28 17:27:24 +03:00
return p.closeConn(cn)
}
2019-06-17 12:32:40 +03:00
func (p *ConnPool) removeConnWithLock(cn *Conn) {
p.connsMu.Lock()
2019-06-17 12:32:40 +03:00
p.removeConn(cn)
p.connsMu.Unlock()
}
func (p *ConnPool) removeConn(cn *Conn) {
2016-03-17 19:00:47 +03:00
for i, c := range p.conns {
if c == cn {
p.conns = append(p.conns[:i], p.conns[i+1:]...)
2018-05-28 17:27:24 +03:00
if cn.pooled {
p.poolSize--
p.checkMinIdleConns()
}
2019-06-17 12:32:40 +03:00
return
2016-03-17 19:00:47 +03:00
}
}
}
func (p *ConnPool) closeConn(cn *Conn) error {
if p.opt.OnClose != nil {
_ = p.opt.OnClose(cn)
}
return cn.Close()
2016-03-12 15:42:12 +03:00
}
// Len returns total number of connections.
func (p *ConnPool) Len() int {
2016-03-17 19:00:47 +03:00
p.connsMu.Lock()
2018-08-12 10:08:21 +03:00
n := len(p.conns)
2016-03-17 19:00:47 +03:00
p.connsMu.Unlock()
2018-05-28 17:27:24 +03:00
return n
}
2018-08-12 10:08:21 +03:00
// IdleLen returns number of idle connections.
2018-05-28 17:27:24 +03:00
func (p *ConnPool) IdleLen() int {
2018-05-28 17:27:24 +03:00
p.connsMu.Lock()
n := p.idleConnsLen
p.connsMu.Unlock()
return n
}
func (p *ConnPool) Stats() *Stats {
2018-05-28 17:27:24 +03:00
idleLen := p.IdleLen()
return &Stats{
Hits: atomic.LoadUint32(&p.stats.Hits),
Misses: atomic.LoadUint32(&p.stats.Misses),
Timeouts: atomic.LoadUint32(&p.stats.Timeouts),
TotalConns: uint32(p.Len()),
2018-05-28 17:27:24 +03:00
IdleConns: uint32(idleLen),
StaleConns: atomic.LoadUint32(&p.stats.StaleConns),
}
}
func (p *ConnPool) closed() bool {
return atomic.LoadUint32(&p._closed) == 1
}
func (p *ConnPool) Filter(fn func(*Conn) bool) error {
var firstErr error
p.connsMu.Lock()
for _, cn := range p.conns {
if fn(cn) {
if err := p.closeConn(cn); err != nil && firstErr == nil {
firstErr = err
}
}
}
p.connsMu.Unlock()
return firstErr
}
func (p *ConnPool) Close() error {
if !atomic.CompareAndSwapUint32(&p._closed, 0, 1) {
return ErrClosed
}
close(p.closedCh)
var firstErr error
p.connsMu.Lock()
2016-03-17 19:00:47 +03:00
for _, cn := range p.conns {
if err := p.closeConn(cn); err != nil && firstErr == nil {
firstErr = err
}
}
2016-03-17 19:00:47 +03:00
p.conns = nil
2018-05-28 17:27:24 +03:00
p.poolSize = 0
2018-05-28 17:27:24 +03:00
p.idleConns = nil
2018-05-28 17:27:24 +03:00
p.idleConnsLen = 0
p.connsMu.Unlock()
return firstErr
}
2019-06-17 12:32:40 +03:00
func (p *ConnPool) reaper(frequency time.Duration) {
ticker := time.NewTicker(frequency)
defer ticker.Stop()
for {
select {
case <-ticker.C:
// It is possible that ticker and closedCh arrive together,
// and select pseudo-randomly pick ticker case, we double
// check here to prevent being executed after closed.
if p.closed() {
return
}
_, err := p.ReapStaleConns()
if err != nil {
internal.Logger.Printf("ReapStaleConns failed: %s", err)
continue
}
case <-p.closedCh:
return
2019-06-17 12:32:40 +03:00
}
}
}
func (p *ConnPool) ReapStaleConns() (int, error) {
var n int
for {
2018-05-28 17:27:24 +03:00
p.getTurn()
2018-05-28 17:27:24 +03:00
p.connsMu.Lock()
2018-05-28 17:27:24 +03:00
cn := p.reapStaleConn()
2018-05-28 17:27:24 +03:00
p.connsMu.Unlock()
2018-05-28 17:27:24 +03:00
p.freeTurn()
2016-03-17 19:00:47 +03:00
2018-05-28 17:27:24 +03:00
if cn != nil {
2019-07-25 13:53:00 +03:00
_ = p.closeConn(cn)
n++
} else {
2016-03-12 15:42:12 +03:00
break
}
2016-03-17 19:00:47 +03:00
}
2019-06-24 15:27:03 +03:00
atomic.AddUint32(&p.stats.StaleConns, uint32(n))
return n, nil
2016-03-12 15:42:12 +03:00
}
2019-06-17 12:32:40 +03:00
func (p *ConnPool) reapStaleConn() *Conn {
if len(p.idleConns) == 0 {
return nil
}
2019-06-17 12:32:40 +03:00
cn := p.idleConns[0]
if !p.isStaleConn(cn) {
return nil
}
2019-06-17 12:32:40 +03:00
p.idleConns = append(p.idleConns[:0], p.idleConns[1:]...)
p.idleConnsLen--
p.removeConn(cn)
return cn
}
2018-08-12 10:08:21 +03:00
func (p *ConnPool) isStaleConn(cn *Conn) bool {
if p.opt.IdleTimeout == 0 && p.opt.MaxConnAge == 0 {
return false
}
now := time.Now()
if p.opt.IdleTimeout > 0 && now.Sub(cn.UsedAt()) >= p.opt.IdleTimeout {
return true
}
2019-03-25 14:02:31 +03:00
if p.opt.MaxConnAge > 0 && now.Sub(cn.createdAt) >= p.opt.MaxConnAge {
2018-08-12 10:08:21 +03:00
return true
}
return false
}