aboutsummaryrefslogtreecommitdiff
path: root/weed/util/grpc_client_server.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-12-07 01:25:01 -0800
committerChris Lu <chris.lu@gmail.com>2018-12-07 01:25:01 -0800
commit29f1673d9766f11b256ca1c0d653aaa7d99e13aa (patch)
tree72c3967aa5338519effcd08c063e8d6f598fcdaa /weed/util/grpc_client_server.go
parent6946c51430473739ae4819c30458ff7edd107bdd (diff)
downloadseaweedfs-29f1673d9766f11b256ca1c0d653aaa7d99e13aa.tar.xz
seaweedfs-29f1673d9766f11b256ca1c0d653aaa7d99e13aa.zip
refactoring
Diffstat (limited to 'weed/util/grpc_client_server.go')
-rw-r--r--weed/util/grpc_client_server.go37
1 files changed, 37 insertions, 0 deletions
diff --git a/weed/util/grpc_client_server.go b/weed/util/grpc_client_server.go
index 8dbb4c0cd..18d5c02c9 100644
--- a/weed/util/grpc_client_server.go
+++ b/weed/util/grpc_client_server.go
@@ -1,12 +1,20 @@
package util
import (
+ "fmt"
+ "sync"
"time"
"google.golang.org/grpc"
"google.golang.org/grpc/keepalive"
)
+var (
+ // cache grpc connections
+ grpcClients = make(map[string]*grpc.ClientConn)
+ grpcClientsLock sync.Mutex
+)
+
func NewGrpcServer() *grpc.Server {
return grpc.NewServer(grpc.KeepaliveParams(keepalive.ServerParameters{
Time: 10 * time.Second, // wait time before ping if no activity
@@ -26,3 +34,32 @@ func GrpcDial(address string, opts ...grpc.DialOption) (*grpc.ClientConn, error)
return grpc.Dial(address, opts...)
}
+
+func WithCachedGrpcClient(fn func(*grpc.ClientConn) error, address string, opts ...grpc.DialOption) error {
+
+ grpcClientsLock.Lock()
+
+ existingConnection, found := grpcClients[address]
+ if found {
+ grpcClientsLock.Unlock()
+ return fn(existingConnection)
+ }
+
+ grpcConnection, err := GrpcDial(address, opts...)
+ if err != nil {
+ grpcClientsLock.Unlock()
+ return fmt.Errorf("fail to dial %s: %v", address, err)
+ }
+
+ grpcClients[address] = grpcConnection
+ grpcClientsLock.Unlock()
+
+ err = fn(grpcConnection)
+ if err != nil {
+ grpcClientsLock.Lock()
+ delete(grpcClients, address)
+ grpcClientsLock.Unlock()
+ }
+
+ return err
+}