2021-08-09 20:58:06 +00:00
|
|
|
// 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"
|
2023-11-24 21:17:35 +00:00
|
|
|
"errors"
|
2021-08-09 20:58:06 +00:00
|
|
|
"fmt"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
2022-12-20 16:21:12 +00:00
|
|
|
lru "github.com/hashicorp/golang-lru/v2"
|
2021-08-09 20:58:06 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const capacity = 1024
|
|
|
|
|
|
|
|
type connectionPool struct {
|
|
|
|
mtx sync.Mutex
|
2022-12-20 16:21:12 +00:00
|
|
|
cache *lru.Cache[string, *tlsConn]
|
2021-08-09 20:58:06 +00:00
|
|
|
tlsConfig *tls.Config
|
|
|
|
}
|
|
|
|
|
|
|
|
func newConnectionPool(tlsClientCfg *tls.Config) (*connectionPool, error) {
|
|
|
|
cache, err := lru.NewWithEvict(
|
2022-12-20 16:21:12 +00:00
|
|
|
capacity, func(_ string, conn *tlsConn) {
|
|
|
|
conn.Close()
|
2021-08-09 20:58:06 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
if err != nil {
|
2023-11-24 21:17:35 +00:00
|
|
|
return nil, fmt.Errorf("failed to create new LRU: %w", err)
|
2021-08-09 20:58:06 +00:00
|
|
|
}
|
|
|
|
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))
|
2022-12-20 16:21:12 +00:00
|
|
|
conn, exists := pool.cache.Get(key)
|
|
|
|
if exists && conn.alive() {
|
|
|
|
return conn, nil
|
2021-08-09 20:58:06 +00:00
|
|
|
}
|
|
|
|
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
|
|
|
|
}
|