forked from prometheus/alertmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnection_pool.go
84 lines (76 loc) · 2.05 KB
/
connection_pool.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// Copyright 2020 Prometheus Team
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cluster
import (
"crypto/tls"
"fmt"
"sync"
"time"
lru "github.com/hashicorp/golang-lru"
"github.com/pkg/errors"
)
const capacity = 1024
type connectionPool struct {
mtx sync.Mutex
cache *lru.Cache
tlsConfig *tls.Config
}
func newConnectionPool(tlsClientCfg *tls.Config) (*connectionPool, error) {
cache, err := lru.NewWithEvict(
capacity, func(_, value interface{}) {
conn, ok := value.(*tlsConn)
if ok {
_ = conn.Close()
}
},
)
if err != nil {
return nil, errors.Wrap(err, "failed to create new LRU")
}
return &connectionPool{
cache: cache,
tlsConfig: tlsClientCfg,
}, nil
}
// borrowConnection returns a *tlsConn from the pool. The connection does not
// need to be returned to the pool because each connection has its own locking.
func (pool *connectionPool) borrowConnection(addr string, timeout time.Duration) (*tlsConn, error) {
pool.mtx.Lock()
defer pool.mtx.Unlock()
if pool.cache == nil {
return nil, errors.New("connection pool closed")
}
key := fmt.Sprintf("%s/%d", addr, int64(timeout))
value, exists := pool.cache.Get(key)
if exists {
conn, ok := value.(*tlsConn)
if ok && conn.alive() {
return conn, nil
}
}
conn, err := dialTLSConn(addr, timeout, pool.tlsConfig)
if err != nil {
return nil, err
}
pool.cache.Add(key, conn)
return conn, nil
}
func (pool *connectionPool) shutdown() {
pool.mtx.Lock()
defer pool.mtx.Unlock()
if pool.cache == nil {
return
}
pool.cache.Purge()
pool.cache = nil
}