Pool first attempt
This commit is contained in:
parent
c0eac7dda8
commit
2e9f4271a8
@ -19,16 +19,16 @@ import (
|
|||||||
type rpcClient struct {
|
type rpcClient struct {
|
||||||
once sync.Once
|
once sync.Once
|
||||||
opts Options
|
opts Options
|
||||||
|
pool *pool
|
||||||
}
|
}
|
||||||
|
|
||||||
func newRpcClient(opt ...Option) Client {
|
func newRpcClient(opt ...Option) Client {
|
||||||
var once sync.Once
|
|
||||||
|
|
||||||
opts := newOptions(opt...)
|
opts := newOptions(opt...)
|
||||||
|
|
||||||
rc := &rpcClient{
|
rc := &rpcClient{
|
||||||
once: once,
|
once: sync.Once{},
|
||||||
opts: opts,
|
opts: opts,
|
||||||
|
pool: newPool(),
|
||||||
}
|
}
|
||||||
|
|
||||||
c := Client(rc)
|
c := Client(rc)
|
||||||
@ -73,10 +73,15 @@ func (r *rpcClient) call(ctx context.Context, address string, req Request, resp
|
|||||||
return errors.InternalServerError("go.micro.client", err.Error())
|
return errors.InternalServerError("go.micro.client", err.Error())
|
||||||
}
|
}
|
||||||
|
|
||||||
c, err := r.opts.Transport.Dial(address, transport.WithTimeout(opts.DialTimeout))
|
var grr error
|
||||||
|
c, err := r.pool.getConn(address, r.opts.Transport, transport.WithTimeout(opts.DialTimeout))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errors.InternalServerError("go.micro.client", fmt.Sprintf("Error sending request: %v", err))
|
return errors.InternalServerError("go.micro.client", fmt.Sprintf("Error sending request: %v", err))
|
||||||
}
|
}
|
||||||
|
defer func() {
|
||||||
|
// defer execution of release
|
||||||
|
r.pool.release(address, c, grr)
|
||||||
|
}()
|
||||||
|
|
||||||
stream := &rpcStream{
|
stream := &rpcStream{
|
||||||
context: ctx,
|
context: ctx,
|
||||||
@ -107,8 +112,10 @@ func (r *rpcClient) call(ctx context.Context, address string, req Request, resp
|
|||||||
|
|
||||||
select {
|
select {
|
||||||
case err := <-ch:
|
case err := <-ch:
|
||||||
|
grr = err
|
||||||
return err
|
return err
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
|
grr = ctx.Err()
|
||||||
return errors.New("go.micro.client", fmt.Sprintf("%v", ctx.Err()), 408)
|
return errors.New("go.micro.client", fmt.Sprintf("%v", ctx.Err()), 408)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
71
client/rpc_pool.go
Normal file
71
client/rpc_pool.go
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
package client
|
||||||
|
|
||||||
|
import (
|
||||||
|
"sync"
|
||||||
|
|
||||||
|
"github.com/micro/go-micro/transport"
|
||||||
|
)
|
||||||
|
|
||||||
|
type pool struct {
|
||||||
|
tr transport.Transport
|
||||||
|
|
||||||
|
sync.Mutex
|
||||||
|
conns map[string][]*poolConn
|
||||||
|
}
|
||||||
|
|
||||||
|
type poolConn struct {
|
||||||
|
transport.Client
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
maxIdleConn = 2
|
||||||
|
)
|
||||||
|
|
||||||
|
func newPool() *pool {
|
||||||
|
return &pool{
|
||||||
|
conns: make(map[string][]*poolConn),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// NoOp the Close since we manage it
|
||||||
|
func (p *poolConn) Close() error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *pool) getConn(addr string, tr transport.Transport, opts ...transport.DialOption) (*poolConn, error) {
|
||||||
|
p.Lock()
|
||||||
|
conns, ok := p.conns[addr]
|
||||||
|
// no free conn
|
||||||
|
if !ok || len(conns) == 0 {
|
||||||
|
p.Unlock()
|
||||||
|
// create new conn
|
||||||
|
c, err := tr.Dial(addr, opts...)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return &poolConn{c}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
conn := conns[len(conns)-1]
|
||||||
|
p.conns[addr] = conns[:len(conns)-1]
|
||||||
|
p.Unlock()
|
||||||
|
return conn, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *pool) release(addr string, conn *poolConn, err error) {
|
||||||
|
// don't store the conn
|
||||||
|
if err != nil {
|
||||||
|
conn.Client.Close()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// otherwise put it back
|
||||||
|
p.Lock()
|
||||||
|
conns := p.conns[addr]
|
||||||
|
if len(conns) >= maxIdleConn {
|
||||||
|
conn.Client.Close()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
p.conns[addr] = append(conns, conn)
|
||||||
|
p.Unlock()
|
||||||
|
}
|
@ -55,6 +55,7 @@ func (s *rpcServer) accept(sock transport.Socket) {
|
|||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
for {
|
||||||
var msg transport.Message
|
var msg transport.Message
|
||||||
if err := sock.Recv(&msg); err != nil {
|
if err := sock.Recv(&msg); err != nil {
|
||||||
return
|
return
|
||||||
@ -99,6 +100,8 @@ func (s *rpcServer) accept(sock transport.Socket) {
|
|||||||
// TODO: needs better error handling
|
// TODO: needs better error handling
|
||||||
if err := s.rpc.serveRequest(ctx, codec, ct); err != nil {
|
if err := s.rpc.serveRequest(ctx, codec, ct); err != nil {
|
||||||
log.Printf("Unexpected error serving request, closing socket: %v", err)
|
log.Printf("Unexpected error serving request, closing socket: %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user