refactoring
This commit is contained in:
parent
8f60f3b463
commit
497fde3617
19
constants.go
Normal file
19
constants.go
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
package redis_pool
|
||||||
|
|
||||||
|
const (
|
||||||
|
// Maximum number of idle connections in the pool.
|
||||||
|
DefaultMaxIdle = 1
|
||||||
|
|
||||||
|
// Maximum number of connections allocated by the pool at a given time.
|
||||||
|
// When zero, there is no limit on the number of connections in the pool.
|
||||||
|
DefaultMaxActive = 1
|
||||||
|
|
||||||
|
// Close connections after remaining idle for this duration. If the value
|
||||||
|
// is zero, then idle connections are not closed. Applications should set
|
||||||
|
// the timeout to a value less than the server's timeout.
|
||||||
|
DefaultIdleTimeout = 0
|
||||||
|
|
||||||
|
// If Wait is true and the pool is at the MaxActive limit, then Get() waits
|
||||||
|
// for a connection to be returned to the pool before returning.
|
||||||
|
DefaultWait = false
|
||||||
|
)
|
302
pool.go
302
pool.go
|
@ -1,12 +1,11 @@
|
||||||
package overflow_redis_pool
|
package redis_pool
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"container/list"
|
|
||||||
"context"
|
|
||||||
"crypto/rand"
|
"crypto/rand"
|
||||||
"crypto/sha1"
|
"crypto/sha1"
|
||||||
"errors"
|
"errors"
|
||||||
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"strconv"
|
"strconv"
|
||||||
"sync"
|
"sync"
|
||||||
|
@ -18,14 +17,16 @@ import (
|
||||||
|
|
||||||
var nowFunc = time.Now // for testing
|
var nowFunc = time.Now // for testing
|
||||||
|
|
||||||
// ErrPoolExhausted is returned from a pool connection method (Do, Send,
|
var (
|
||||||
// Receive, Flush, Err) when the maximum number of database connections in the
|
// ErrPoolExhausted is returned from a pool connection method (Do, Send,
|
||||||
// pool has been reached.
|
// Receive, Flush, Err) when the maximum number of database connections in the
|
||||||
var ErrPoolExhausted = errors.New("redigo: connection pool exhausted")
|
// pool has been reached.
|
||||||
|
ErrPoolFull = errors.New("Redis pool: Pool is reached maximum capacity.")
|
||||||
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
errPoolClosed = errors.New("redigo: connection pool closed")
|
errPoolClosed = errors.New("Redis pool: connection pool closed")
|
||||||
errConnClosed = errors.New("redigo: connection closed")
|
errConnClosed = errors.New("Redis pool: connection closed")
|
||||||
)
|
)
|
||||||
|
|
||||||
// Pool maintains a pool of connections. The application calls the Get method
|
// Pool maintains a pool of connections. The application calls the Get method
|
||||||
|
@ -103,22 +104,24 @@ var (
|
||||||
// }
|
// }
|
||||||
//
|
//
|
||||||
type Pool interface {
|
type Pool interface {
|
||||||
|
Start() error
|
||||||
|
Stop()
|
||||||
|
|
||||||
Get() redis.Conn
|
Get() redis.Conn
|
||||||
ActiveCount() int
|
Put(conn redis.Conn)
|
||||||
Close() error
|
|
||||||
|
Capacity() int
|
||||||
|
Available() int
|
||||||
}
|
}
|
||||||
|
|
||||||
type pool struct {
|
type pool struct {
|
||||||
ctx context.Context
|
ph PoolHandler
|
||||||
handler PoolHandler
|
|
||||||
// mu protects fields defined below.
|
|
||||||
mu sync.Mutex
|
|
||||||
cond *sync.Cond
|
|
||||||
closed bool
|
|
||||||
active int
|
|
||||||
|
|
||||||
// Stack of idleConn with most recently used at the front.
|
connections map[redis.Conn]*pooledConnection
|
||||||
idle list.List
|
connectionQueueChan chan *pooledConnection
|
||||||
|
|
||||||
|
stopChan chan struct{}
|
||||||
|
stopWg sync.WaitGroup
|
||||||
}
|
}
|
||||||
|
|
||||||
type idleConn struct {
|
type idleConn struct {
|
||||||
|
@ -129,171 +132,164 @@ type idleConn struct {
|
||||||
// NewPool creates a new pool.
|
// NewPool creates a new pool.
|
||||||
//
|
//
|
||||||
// Deprecated: Initialize the Pool directory as shown in the example.
|
// Deprecated: Initialize the Pool directory as shown in the example.
|
||||||
func NewPool(ctx context.Context, handler PoolHandler) Pool {
|
func New(ph PoolHandler) Pool {
|
||||||
p := &pool{
|
p := &pool{
|
||||||
ctx: ctx,
|
ph: ph,
|
||||||
handler: handler,
|
|
||||||
}
|
}
|
||||||
return p
|
return p
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get gets a connection. The application must close the returned connection.
|
func (p *pool) Start() error {
|
||||||
// This method always returns a valid connection so that applications can defer
|
if nil == p.ph {
|
||||||
// error handling to the first use of the connection. If there is an error
|
panic("GRPC Pool: pool handler must be specified.")
|
||||||
// getting an underlying connection, then the connection Err, Do, Send, Flush
|
|
||||||
// and Receive methods return that error.
|
|
||||||
func (p *pool) Get() redis.Conn {
|
|
||||||
c, err := p.get()
|
|
||||||
if err != nil {
|
|
||||||
return errorConnection{err}
|
|
||||||
}
|
}
|
||||||
return &pooledConnection{p: p, c: c}
|
p.ph.Validate()
|
||||||
}
|
|
||||||
|
|
||||||
// ActiveCount returns the number of active connections in the pool.
|
if p.stopChan != nil {
|
||||||
func (p *pool) ActiveCount() int {
|
return fmt.Errorf("GRPC Pool: pool is already running. Stop it before starting it again")
|
||||||
p.mu.Lock()
|
}
|
||||||
active := p.active
|
p.stopChan = make(chan struct{})
|
||||||
p.mu.Unlock()
|
p.connections = make(map[redis.Conn]*pooledConnection, p.ph.GetMaxCapacity())
|
||||||
return active
|
p.connectionQueueChan = make(chan *pooledConnection, p.ph.GetMaxCapacity())
|
||||||
}
|
|
||||||
|
|
||||||
// Close releases the resources used by the pool.
|
if 0 < p.ph.GetMaxIdle() {
|
||||||
func (p *pool) Close() error {
|
for i := 0; i < p.ph.GetMaxIdle(); i++ {
|
||||||
p.mu.Lock()
|
if err := p.createConnection(); nil != err {
|
||||||
idle := p.idle
|
p.Stop()
|
||||||
p.idle.Init()
|
return err
|
||||||
p.closed = true
|
}
|
||||||
p.active -= idle.Len()
|
}
|
||||||
if p.cond != nil {
|
|
||||||
p.cond.Broadcast()
|
|
||||||
}
|
|
||||||
p.mu.Unlock()
|
|
||||||
for e := idle.Front(); e != nil; e = e.Next() {
|
|
||||||
e.Value.(idleConn).c.Close()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// release decrements the active count and signals waiters. The caller must
|
func (p *pool) Stop() {
|
||||||
// hold p.mu during the call.
|
if p.stopChan == nil {
|
||||||
func (p *pool) release() {
|
panic("GRPC Pool: pool must be started before stopping it")
|
||||||
p.active -= 1
|
|
||||||
if p.cond != nil {
|
|
||||||
p.cond.Signal()
|
|
||||||
}
|
}
|
||||||
|
close(p.connectionQueueChan)
|
||||||
|
|
||||||
|
for k, _ := range p.connections {
|
||||||
|
p.destroyConnection(k)
|
||||||
|
}
|
||||||
|
|
||||||
|
p.stopWg.Wait()
|
||||||
|
p.stopChan = nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// get prunes stale connections and returns a connection from the idle list or
|
func (p *pool) createConnection() error {
|
||||||
// creates a new connection.
|
maxCapacity := p.ph.GetMaxCapacity()
|
||||||
func (p *pool) get() (redis.Conn, error) {
|
currentConnectionCount := len(p.connections)
|
||||||
p.mu.Lock()
|
if currentConnectionCount >= maxCapacity {
|
||||||
|
return ErrPoolFull
|
||||||
|
}
|
||||||
|
|
||||||
// Prune stale connections.
|
conn, err := p.ph.Dial()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
pc := &pooledConnection{
|
||||||
|
p: p,
|
||||||
|
c: conn,
|
||||||
|
idleTime: time.Now(),
|
||||||
|
inUse: false,
|
||||||
|
}
|
||||||
|
p.connections[conn] = pc
|
||||||
|
p.connectionQueueChan <- pc
|
||||||
|
p.stopWg.Add(1)
|
||||||
|
|
||||||
if timeout := p.handler.GetIdleTimeout(); timeout > 0 {
|
return nil
|
||||||
for i, n := 0, p.idle.Len(); i < n; i++ {
|
}
|
||||||
e := p.idle.Back()
|
|
||||||
if e == nil {
|
func (p *pool) destroyConnection(conn redis.Conn) error {
|
||||||
break
|
var err error
|
||||||
}
|
pc, ok := p.connections[conn]
|
||||||
ic := e.Value.(idleConn)
|
if !ok {
|
||||||
if ic.t.Add(timeout).After(nowFunc()) {
|
return nil
|
||||||
break
|
}
|
||||||
}
|
err = pc.c.Close()
|
||||||
p.idle.Remove(e)
|
if nil != err {
|
||||||
p.release()
|
return err
|
||||||
p.mu.Unlock()
|
}
|
||||||
ic.c.Close()
|
delete(p.connections, conn)
|
||||||
p.mu.Lock()
|
p.stopWg.Done()
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *pool) get() (*pooledConnection, error) {
|
||||||
|
var pc *pooledConnection
|
||||||
|
var err error
|
||||||
|
|
||||||
|
avail := len(p.connectionQueueChan)
|
||||||
|
if 0 == avail {
|
||||||
|
if err = p.createConnection(); nil != err {
|
||||||
|
return nil, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for {
|
for {
|
||||||
|
select {
|
||||||
// Get idle connection.
|
case pc = <-p.connectionQueueChan:
|
||||||
|
// All good
|
||||||
for i, n := 0, p.idle.Len(); i < n; i++ {
|
default:
|
||||||
e := p.idle.Front()
|
|
||||||
if e == nil {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
ic := e.Value.(idleConn)
|
|
||||||
p.idle.Remove(e)
|
|
||||||
test := p.handler.TestOnBorrow
|
|
||||||
p.mu.Unlock()
|
|
||||||
if test == nil || test(ic.c, ic.t) == nil {
|
|
||||||
return ic.c, nil
|
|
||||||
}
|
|
||||||
ic.c.Close()
|
|
||||||
p.mu.Lock()
|
|
||||||
p.release()
|
|
||||||
}
|
}
|
||||||
|
idleTimeout := p.ph.GetIdleTimeout()
|
||||||
// Check for pool closed before dialing a new connection.
|
if 1 < len(p.connectionQueueChan) && 0 < idleTimeout && pc.idleTime.Add(idleTimeout).Before(time.Now()) {
|
||||||
|
go p.destroyConnection(pc.c)
|
||||||
if p.closed {
|
continue
|
||||||
p.mu.Unlock()
|
|
||||||
return nil, errors.New("redigo: get on closed pool")
|
|
||||||
}
|
}
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
// Dial new connection if under limit.
|
return pc, nil
|
||||||
|
}
|
||||||
|
|
||||||
if p.handler.GetMaxActive() == 0 || p.active < p.handler.GetMaxActive() {
|
func (p *pool) Get() redis.Conn {
|
||||||
dial := p.handler.Dial
|
var err error
|
||||||
p.active += 1
|
var pc *pooledConnection
|
||||||
p.mu.Unlock()
|
if pc, err = p.get(); nil != err {
|
||||||
c, err := dial()
|
return errorConnection{err}
|
||||||
if err != nil {
|
}
|
||||||
p.mu.Lock()
|
|
||||||
p.release()
|
|
||||||
p.mu.Unlock()
|
|
||||||
c = nil
|
|
||||||
}
|
|
||||||
return c, err
|
|
||||||
}
|
|
||||||
|
|
||||||
if !p.handler.IsWait() {
|
pc.inUse = true
|
||||||
p.mu.Unlock()
|
|
||||||
return nil, ErrPoolExhausted
|
|
||||||
}
|
|
||||||
|
|
||||||
if p.cond == nil {
|
return pc
|
||||||
p.cond = sync.NewCond(&p.mu)
|
}
|
||||||
}
|
|
||||||
p.cond.Wait()
|
func (p *pool) Put(conn redis.Conn) {
|
||||||
|
pc, ok := p.connections[conn.(*pooledConnection).c]
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
pc.idleTime = time.Now()
|
||||||
|
pc.inUse = false
|
||||||
|
|
||||||
|
select {
|
||||||
|
case p.connectionQueueChan <- pc:
|
||||||
|
// All good
|
||||||
|
default:
|
||||||
|
// channel is full
|
||||||
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *pool) put(c redis.Conn, forceClose bool) error {
|
func (p *pool) Capacity() int {
|
||||||
err := c.Err()
|
return cap(p.connectionQueueChan)
|
||||||
p.mu.Lock()
|
}
|
||||||
if !p.closed && err == nil && !forceClose {
|
|
||||||
p.idle.PushFront(idleConn{t: nowFunc(), c: c})
|
|
||||||
if p.idle.Len() > p.handler.GetMaxIdle() {
|
|
||||||
c = p.idle.Remove(p.idle.Back()).(idleConn).c
|
|
||||||
} else {
|
|
||||||
c = nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if c == nil {
|
func (p *pool) Available() int {
|
||||||
if p.cond != nil {
|
return len(p.connectionQueueChan)
|
||||||
p.cond.Signal()
|
|
||||||
}
|
|
||||||
p.mu.Unlock()
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
p.release()
|
|
||||||
p.mu.Unlock()
|
|
||||||
return c.Close()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type pooledConnection struct {
|
type pooledConnection struct {
|
||||||
p *pool
|
p *pool
|
||||||
c redis.Conn
|
c redis.Conn
|
||||||
state int
|
idleTime time.Time
|
||||||
|
inUse bool
|
||||||
|
state int
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -347,7 +343,9 @@ func (pc *pooledConnection) Close() error {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
c.Do("")
|
c.Do("")
|
||||||
pc.p.put(c, pc.state != 0)
|
|
||||||
|
pc.p.Put(pc)
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package overflow_redis_pool
|
package redis_pool
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
@ -21,12 +21,12 @@ type PoolHandler interface {
|
||||||
// closed.
|
// closed.
|
||||||
TestOnBorrow(c redis.Conn, t time.Time) error
|
TestOnBorrow(c redis.Conn, t time.Time) error
|
||||||
|
|
||||||
// Maximum number of idle connections in the pool.
|
|
||||||
GetMaxIdle() int
|
|
||||||
|
|
||||||
// Maximum number of connections allocated by the pool at a given time.
|
// Maximum number of connections allocated by the pool at a given time.
|
||||||
// When zero, there is no limit on the number of connections in the pool.
|
// When zero, there is no limit on the number of connections in the pool.
|
||||||
GetMaxActive() int
|
GetMaxCapacity() int
|
||||||
|
|
||||||
|
// Maximum number of idle connections in the pool.
|
||||||
|
GetMaxIdle() int
|
||||||
|
|
||||||
// Close connections after remaining idle for this duration. If the value
|
// Close connections after remaining idle for this duration. If the value
|
||||||
// is zero, then idle connections are not closed. Applications should set
|
// is zero, then idle connections are not closed. Applications should set
|
||||||
|
@ -36,4 +36,6 @@ type PoolHandler interface {
|
||||||
// If Wait is true and the pool is at the MaxActive limit, then Get() waits
|
// If Wait is true and the pool is at the MaxActive limit, then Get() waits
|
||||||
// for a connection to be returned to the pool before returning.
|
// for a connection to be returned to the pool before returning.
|
||||||
IsWait() bool
|
IsWait() bool
|
||||||
|
|
||||||
|
Validate()
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,18 +1,19 @@
|
||||||
package overflow_redis_pool
|
package redis_pool
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/garyburd/redigo/redis"
|
"github.com/garyburd/redigo/redis"
|
||||||
)
|
)
|
||||||
|
|
||||||
type PoolHandlers struct {
|
type PoolHandlers struct {
|
||||||
// Maximum number of idle connections in the pool.
|
|
||||||
MaxIdle int
|
|
||||||
|
|
||||||
// Maximum number of connections allocated by the pool at a given time.
|
// Maximum number of connections allocated by the pool at a given time.
|
||||||
// When zero, there is no limit on the number of connections in the pool.
|
// When zero, there is no limit on the number of connections in the pool.
|
||||||
MaxActive int
|
MaxCapacity int
|
||||||
|
|
||||||
|
// Maximum number of idle connections in the pool.
|
||||||
|
MaxIdle int
|
||||||
|
|
||||||
// Close connections after remaining idle for this duration. If the value
|
// Close connections after remaining idle for this duration. If the value
|
||||||
// is zero, then idle connections are not closed. Applications should set
|
// is zero, then idle connections are not closed. Applications should set
|
||||||
|
@ -24,26 +25,35 @@ type PoolHandlers struct {
|
||||||
Wait bool
|
Wait bool
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *PoolHandlers) Dial() (redis.Conn, error) {
|
func (ph *PoolHandlers) Dial() (redis.Conn, error) {
|
||||||
return nil, nil
|
return nil, fmt.Errorf("Redis Pool: Dial method is not implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *PoolHandlers) TestOnBorrow(c redis.Conn, t time.Time) error {
|
func (ph *PoolHandlers) TestOnBorrow(c redis.Conn, t time.Time) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *PoolHandlers) GetMaxIdle() int {
|
func (ph *PoolHandlers) GetMaxCapacity() int {
|
||||||
return h.MaxIdle
|
return ph.MaxCapacity
|
||||||
|
}
|
||||||
|
func (ph *PoolHandlers) GetMaxIdle() int {
|
||||||
|
return ph.MaxIdle
|
||||||
|
}
|
||||||
|
func (ph *PoolHandlers) GetIdleTimeout() time.Duration {
|
||||||
|
return ph.IdleTimeout
|
||||||
|
}
|
||||||
|
func (ph *PoolHandlers) IsWait() bool {
|
||||||
|
return ph.Wait
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *PoolHandlers) GetMaxActive() int {
|
func (ph *PoolHandlers) Validate() {
|
||||||
return h.MaxActive
|
if ph.MaxIdle <= 0 {
|
||||||
}
|
ph.MaxIdle = DefaultMaxIdle
|
||||||
|
}
|
||||||
func (h *PoolHandlers) GetIdleTimeout() time.Duration {
|
if ph.MaxActive <= 0 {
|
||||||
return h.IdleTimeout
|
ph.MaxActive = DefaultMaxActive
|
||||||
}
|
}
|
||||||
|
if ph.IdleTimeout <= 0 {
|
||||||
func (h *PoolHandlers) IsWait() bool {
|
ph.IdleTimeout = DefaultIdleTimeout
|
||||||
return h.Wait
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user