seaweedfs/weed/pb/grpc_client_server.go

216 lines
6.4 KiB
Go
Raw Normal View History

2020-03-04 08:39:47 +00:00
package pb
2018-07-04 02:07:55 +00:00
import (
2019-03-16 00:20:24 +00:00
"context"
2018-12-07 09:25:01 +00:00
"fmt"
"net/http"
"strconv"
"strings"
2018-12-07 09:25:01 +00:00
"sync"
2018-07-04 02:07:55 +00:00
"time"
"google.golang.org/grpc"
"google.golang.org/grpc/keepalive"
2020-03-04 08:39:47 +00:00
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
"github.com/chrislusf/seaweedfs/weed/pb/messaging_pb"
2018-07-04 02:07:55 +00:00
)
const (
Max_Message_Size = 1 << 30 // 1 GB
)
2018-12-07 09:25:01 +00:00
var (
// cache grpc connections
grpcClients = make(map[string]*grpc.ClientConn)
grpcClientsLock sync.Mutex
)
2019-04-11 16:27:05 +00:00
func init() {
2019-04-16 05:00:50 +00:00
http.DefaultTransport.(*http.Transport).MaxIdleConnsPerHost = 1024
http.DefaultTransport.(*http.Transport).MaxIdleConns = 1024
}
2019-02-16 20:49:58 +00:00
func NewGrpcServer(opts ...grpc.ServerOption) *grpc.Server {
var options []grpc.ServerOption
options = append(options,
grpc.KeepaliveParams(keepalive.ServerParameters{
Time: 10 * time.Second, // wait time before ping if no activity
Timeout: 20 * time.Second, // ping timeout
MaxConnectionAge: 10 * time.Hour,
}),
grpc.KeepaliveEnforcementPolicy(keepalive.EnforcementPolicy{
MinTime: 60 * time.Second, // min time a client should wait before sending a ping
PermitWithoutStream: false,
}),
grpc.MaxRecvMsgSize(Max_Message_Size),
grpc.MaxSendMsgSize(Max_Message_Size),
)
2019-02-16 20:49:58 +00:00
for _, opt := range opts {
if opt != nil {
options = append(options, opt)
}
}
return grpc.NewServer(options...)
2018-07-04 02:07:55 +00:00
}
2019-03-16 00:20:24 +00:00
func GrpcDial(ctx context.Context, address string, opts ...grpc.DialOption) (*grpc.ClientConn, error) {
// opts = append(opts, grpc.WithBlock())
// opts = append(opts, grpc.WithTimeout(time.Duration(5*time.Second)))
2019-02-16 20:49:58 +00:00
var options []grpc.DialOption
options = append(options,
2019-02-18 20:11:52 +00:00
// grpc.WithInsecure(),
grpc.WithDefaultCallOptions(
grpc.MaxCallSendMsgSize(Max_Message_Size),
grpc.MaxCallRecvMsgSize(Max_Message_Size),
),
2019-02-16 20:49:58 +00:00
grpc.WithKeepaliveParams(keepalive.ClientParameters{
2020-02-27 00:52:57 +00:00
Time: 30 * time.Second, // client ping server if no activity for this long
Timeout: 20 * time.Second,
PermitWithoutStream: false,
2019-02-16 20:49:58 +00:00
}))
for _, opt := range opts {
if opt != nil {
options = append(options, opt)
}
}
2019-03-16 00:20:24 +00:00
return grpc.DialContext(ctx, address, options...)
2018-07-04 02:07:55 +00:00
}
2018-12-07 09:25:01 +00:00
2020-07-04 05:25:35 +00:00
func getOrCreateConnection(address string, opts ...grpc.DialOption) (*grpc.ClientConn, error) {
2018-12-07 09:25:01 +00:00
grpcClientsLock.Lock()
2020-07-04 05:25:35 +00:00
defer grpcClientsLock.Unlock()
2018-12-07 09:25:01 +00:00
existingConnection, found := grpcClients[address]
if found {
2020-07-04 05:25:35 +00:00
return existingConnection, nil
2018-12-07 09:25:01 +00:00
}
grpcConnection, err := GrpcDial(context.Background(), address, opts...)
2018-12-07 09:25:01 +00:00
if err != nil {
2020-07-04 05:25:35 +00:00
return nil, fmt.Errorf("fail to dial %s: %v", address, err)
2018-12-07 09:25:01 +00:00
}
grpcClients[address] = grpcConnection
2020-07-04 05:25:35 +00:00
return grpcConnection, nil
}
func WithCachedGrpcClient(fn func(*grpc.ClientConn) error, address string, opts ...grpc.DialOption) error {
grpcConnection, err := getOrCreateConnection(address, opts...)
2018-12-07 09:25:01 +00:00
if err != nil {
2020-07-04 05:25:35 +00:00
return fmt.Errorf("getOrCreateConnection %s: %v", address, err)
2018-12-07 09:25:01 +00:00
}
2020-07-04 05:25:35 +00:00
return fn(grpcConnection)
2018-12-07 09:25:01 +00:00
}
func ParseServerToGrpcAddress(server string) (serverGrpcAddress string, err error) {
2019-04-16 08:15:30 +00:00
colonIndex := strings.LastIndex(server, ":")
if colonIndex < 0 {
return "", fmt.Errorf("server should have hostname:port format: %v", server)
}
2019-04-16 08:15:30 +00:00
port, parseErr := strconv.ParseUint(server[colonIndex+1:], 10, 64)
if parseErr != nil {
return "", fmt.Errorf("server port parse error: %v", parseErr)
}
grpcPort := int(port) + 10000
2019-04-16 08:15:30 +00:00
return fmt.Sprintf("%s:%d", server[:colonIndex], grpcPort), nil
}
func ServerToGrpcAddress(server string) (serverGrpcAddress string) {
hostnameAndPort := strings.Split(server, ":")
if len(hostnameAndPort) != 2 {
return fmt.Sprintf("unexpected server address: %s", server)
}
port, parseErr := strconv.ParseUint(hostnameAndPort[1], 10, 64)
if parseErr != nil {
return fmt.Sprintf("failed to parse port for %s:%s", hostnameAndPort[0], hostnameAndPort[1])
}
grpcPort := int(port) + 10000
return fmt.Sprintf("%s:%d", hostnameAndPort[0], grpcPort)
}
2020-03-04 08:39:47 +00:00
func GrpcAddressToServerAddress(grpcAddress string) (serverAddress string) {
hostnameAndPort := strings.Split(grpcAddress, ":")
if len(hostnameAndPort) != 2 {
return fmt.Sprintf("unexpected grpcAddress: %s", grpcAddress)
}
grpcPort, parseErr := strconv.ParseUint(hostnameAndPort[1], 10, 64)
if parseErr != nil {
return fmt.Sprintf("failed to parse port for %s:%s", hostnameAndPort[0], hostnameAndPort[1])
}
port := int(grpcPort) - 10000
return fmt.Sprintf("%s:%d", hostnameAndPort[0], port)
}
2020-03-04 08:39:47 +00:00
func WithMasterClient(master string, grpcDialOption grpc.DialOption, fn func(client master_pb.SeaweedClient) error) error {
masterGrpcAddress, parseErr := ParseServerToGrpcAddress(master)
if parseErr != nil {
return fmt.Errorf("failed to parse master grpc %v: %v", master, parseErr)
}
return WithCachedGrpcClient(func(grpcConnection *grpc.ClientConn) error {
client := master_pb.NewSeaweedClient(grpcConnection)
return fn(client)
}, masterGrpcAddress, grpcDialOption)
}
func WithBrokerGrpcClient(brokerGrpcAddress string, grpcDialOption grpc.DialOption, fn func(client messaging_pb.SeaweedMessagingClient) error) error {
return WithCachedGrpcClient(func(grpcConnection *grpc.ClientConn) error {
client := messaging_pb.NewSeaweedMessagingClient(grpcConnection)
return fn(client)
}, brokerGrpcAddress, grpcDialOption)
}
2020-03-04 08:39:47 +00:00
func WithFilerClient(filer string, grpcDialOption grpc.DialOption, fn func(client filer_pb.SeaweedFilerClient) error) error {
filerGrpcAddress, parseErr := ParseServerToGrpcAddress(filer)
if parseErr != nil {
return fmt.Errorf("failed to parse filer grpc %v: %v", filer, parseErr)
}
return WithGrpcFilerClient(filerGrpcAddress, grpcDialOption, fn)
}
func WithGrpcFilerClient(filerGrpcAddress string, grpcDialOption grpc.DialOption, fn func(client filer_pb.SeaweedFilerClient) error) error {
return WithCachedGrpcClient(func(grpcConnection *grpc.ClientConn) error {
client := filer_pb.NewSeaweedFilerClient(grpcConnection)
return fn(client)
}, filerGrpcAddress, grpcDialOption)
}
func ParseFilerGrpcAddress(filer string) (filerGrpcAddress string, err error) {
hostnameAndPort := strings.Split(filer, ":")
if len(hostnameAndPort) != 2 {
return "", fmt.Errorf("filer should have hostname:port format: %v", hostnameAndPort)
}
filerPort, parseErr := strconv.ParseUint(hostnameAndPort[1], 10, 64)
if parseErr != nil {
return "", fmt.Errorf("filer port parse error: %v", parseErr)
}
filerGrpcPort := int(filerPort) + 10000
return fmt.Sprintf("%s:%d", hostnameAndPort[0], filerGrpcPort), nil
}