redis/internal/pool/pool.go

491 lines
8.7 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"
2017-02-18 17:42:34 +03:00
"github.com/go-redis/redis/internal"
2016-04-09 14:52:01 +03:00
)
var ErrClosed = errors.New("redis: client is closed")
var 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)
Remove(*Conn)
Len() int
2018-05-28 17:27:24 +03:00
IdleLen() int
Stats() *Stats
Close() error
}
type Options struct {
2019-06-04 14:05:29 +03:00
Dialer func(c 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 ConnPool struct {
opt *Options
2017-10-11 18:03:55 +03:00
dialErrorsNum uint32 // atomic
lastDialErrorMu sync.RWMutex
2018-05-28 17:27:24 +03:00
lastDialError error
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
}
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),
2016-03-12 15:42:12 +03:00
}
2018-05-28 17:27:24 +03:00
2018-05-28 17:27:24 +03:00
for i := 0; i < opt.MinIdleConns; i++ {
p.checkMinIdleConns()
}
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
}
if p.poolSize < p.opt.PoolSize && p.idleConnsLen < p.opt.MinIdleConns {
p.poolSize++
p.idleConnsLen++
go p.addIdleConn()
}
}
func (p *ConnPool) addIdleConn() {
2019-06-14 16:00:03 +03:00
cn, err := p.newConn(context.TODO(), true)
2018-05-28 17:27:24 +03:00
if err != nil {
return
}
p.connsMu.Lock()
p.conns = append(p.conns, cn)
p.idleConns = append(p.idleConns, cn)
p.connsMu.Unlock()
}
2019-06-14 16:00:03 +03:00
func (p *ConnPool) NewConn(ctx context.Context) (*Conn, error) {
return p._NewConn(ctx, false)
2018-05-28 17:27:24 +03:00
}
func (p *ConnPool) _NewConn(ctx context.Context, pooled bool) (*Conn, error) {
cn, err := p.newConn(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 {
if p.poolSize < p.opt.PoolSize {
p.poolSize++
} else {
cn.pooled = false
}
}
2018-05-28 17:27:24 +03:00
p.connsMu.Unlock()
return cn, nil
}
func (p *ConnPool) newConn(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
}
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-04 14:05:29 +03:00
conn, err := p.opt.Dialer(nil)
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) {
2017-10-11 18:03:55 +03:00
p.lastDialErrorMu.Lock()
p.lastDialError = err
p.lastDialErrorMu.Unlock()
}
2017-10-11 18:03:55 +03:00
func (p *ConnPool) getLastDialError() error {
p.lastDialErrorMu.RLock()
err := p.lastDialError
p.lastDialErrorMu.RUnlock()
return err
}
// 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)
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 {
var done <-chan struct{}
if ctx != nil {
done = ctx.Done()
}
2018-05-28 17:27:24 +03:00
select {
case <-done:
return ctx.Err()
2018-05-28 17:27:24 +03:00
case p.queue <- struct{}{}:
return nil
default:
timer := timers.Get().(*time.Timer)
timer.Reset(p.opt.PoolTimeout)
select {
case <-done:
2019-06-09 12:29:23 +03:00
if !timer.Stop() {
<-timer.C
}
timers.Put(timer)
return ctx.Err()
2018-05-28 17:27:24 +03:00
case p.queue <- struct{}{}:
if !timer.Stop() {
<-timer.C
}
timers.Put(timer)
return nil
case <-timer.C:
timers.Put(timer)
atomic.AddUint32(&p.stats.Timeouts, 1)
return ErrPoolTimeout
}
}
}
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) {
2018-05-28 17:27:24 +03:00
if !cn.pooled {
p.Remove(cn)
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()
}
2018-05-28 17:27:24 +03:00
func (p *ConnPool) Remove(cn *Conn) {
p.removeConn(cn)
p.freeTurn()
_ = p.closeConn(cn)
}
func (p *ConnPool) CloseConn(cn *Conn) error {
2018-05-28 17:27:24 +03:00
p.removeConn(cn)
return p.closeConn(cn)
}
func (p *ConnPool) removeConn(cn *Conn) {
p.connsMu.Lock()
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()
}
2016-03-17 19:00:47 +03:00
break
}
}
p.connsMu.Unlock()
}
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
}
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
}
2018-05-28 17:27:24 +03:00
func (p *ConnPool) reapStaleConn() *Conn {
if len(p.idleConns) == 0 {
return nil
}
2018-05-28 17:27:24 +03:00
cn := p.idleConns[0]
2018-08-12 10:08:21 +03:00
if !p.isStaleConn(cn) {
2018-05-28 17:27:24 +03:00
return nil
}
2018-05-28 17:27:24 +03:00
p.idleConns = append(p.idleConns[:0], p.idleConns[1:]...)
2018-05-28 17:27:24 +03:00
p.idleConnsLen--
2018-05-28 17:27:24 +03:00
return cn
}
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
if cn != nil {
p.removeConn(cn)
}
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 {
p.closeConn(cn)
n++
} else {
2016-03-12 15:42:12 +03:00
break
}
2016-03-17 19:00:47 +03:00
}
return n, nil
2016-03-12 15:42:12 +03:00
}
func (p *ConnPool) reaper(frequency time.Duration) {
ticker := time.NewTicker(frequency)
defer ticker.Stop()
2017-04-02 17:10:47 +03:00
for range ticker.C {
if p.closed() {
break
}
2016-03-12 15:42:12 +03:00
n, err := p.ReapStaleConns()
if err != nil {
2016-04-09 14:52:01 +03:00
internal.Logf("ReapStaleConns failed: %s", err)
2016-03-17 19:00:47 +03:00
continue
}
atomic.AddUint32(&p.stats.StaleConns, uint32(n))
}
}
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
}