2020-03-04 16:39:47 +08:00
|
|
|
package pb
|
2018-07-04 10:07:55 +08:00
|
|
|
|
|
|
|
import (
|
2019-03-16 08:20:24 +08:00
|
|
|
"context"
|
2018-12-07 17:25:01 +08:00
|
|
|
"fmt"
|
2021-03-03 12:59:39 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2019-04-05 11:28:40 +08:00
|
|
|
"net/http"
|
2019-01-19 06:14:47 +08:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
2018-12-07 17:25:01 +08:00
|
|
|
"sync"
|
2018-07-04 10:07:55 +08:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
"google.golang.org/grpc/keepalive"
|
2020-03-04 16:39:47 +08:00
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
|
2020-04-19 06:17:27 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/messaging_pb"
|
2018-07-04 10:07:55 +08:00
|
|
|
)
|
|
|
|
|
2020-04-06 12:48:45 +08:00
|
|
|
const (
|
|
|
|
Max_Message_Size = 1 << 30 // 1 GB
|
|
|
|
)
|
|
|
|
|
2018-12-07 17:25:01 +08:00
|
|
|
var (
|
|
|
|
// cache grpc connections
|
|
|
|
grpcClients = make(map[string]*grpc.ClientConn)
|
|
|
|
grpcClientsLock sync.Mutex
|
|
|
|
)
|
|
|
|
|
2019-04-12 00:27:05 +08:00
|
|
|
func init() {
|
2019-04-16 13:00:50 +08:00
|
|
|
http.DefaultTransport.(*http.Transport).MaxIdleConnsPerHost = 1024
|
2021-02-12 19:47:15 +08:00
|
|
|
http.DefaultTransport.(*http.Transport).MaxIdleConns = 1024
|
2019-04-05 11:28:40 +08:00
|
|
|
}
|
|
|
|
|
2019-02-17 04:49:58 +08:00
|
|
|
func NewGrpcServer(opts ...grpc.ServerOption) *grpc.Server {
|
|
|
|
var options []grpc.ServerOption
|
2020-04-06 12:48:45 +08:00
|
|
|
options = append(options,
|
|
|
|
grpc.KeepaliveParams(keepalive.ServerParameters{
|
2021-02-07 19:50:01 +08:00
|
|
|
Time: 10 * time.Second, // wait time before ping if no activity
|
|
|
|
Timeout: 20 * time.Second, // ping timeout
|
|
|
|
MaxConnectionAge: 10 * time.Hour,
|
2020-04-06 12:48:45 +08:00
|
|
|
}),
|
|
|
|
grpc.KeepaliveEnforcementPolicy(keepalive.EnforcementPolicy{
|
|
|
|
MinTime: 60 * time.Second, // min time a client should wait before sending a ping
|
2020-04-20 17:53:22 +08:00
|
|
|
PermitWithoutStream: false,
|
2020-04-06 12:48:45 +08:00
|
|
|
}),
|
|
|
|
grpc.MaxRecvMsgSize(Max_Message_Size),
|
|
|
|
grpc.MaxSendMsgSize(Max_Message_Size),
|
|
|
|
)
|
2019-02-17 04:49:58 +08:00
|
|
|
for _, opt := range opts {
|
|
|
|
if opt != nil {
|
|
|
|
options = append(options, opt)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return grpc.NewServer(options...)
|
2018-07-04 10:07:55 +08:00
|
|
|
}
|
|
|
|
|
2019-03-16 08:20:24 +08:00
|
|
|
func GrpcDial(ctx context.Context, address string, opts ...grpc.DialOption) (*grpc.ClientConn, error) {
|
2019-01-18 16:24:40 +08:00
|
|
|
// opts = append(opts, grpc.WithBlock())
|
|
|
|
// opts = append(opts, grpc.WithTimeout(time.Duration(5*time.Second)))
|
2019-02-17 04:49:58 +08:00
|
|
|
var options []grpc.DialOption
|
|
|
|
options = append(options,
|
2019-02-19 04:11:52 +08:00
|
|
|
// grpc.WithInsecure(),
|
2020-04-06 12:48:45 +08:00
|
|
|
grpc.WithDefaultCallOptions(
|
|
|
|
grpc.MaxCallSendMsgSize(Max_Message_Size),
|
|
|
|
grpc.MaxCallRecvMsgSize(Max_Message_Size),
|
|
|
|
),
|
2019-02-17 04:49:58 +08:00
|
|
|
grpc.WithKeepaliveParams(keepalive.ClientParameters{
|
2020-02-27 08:52:57 +08:00
|
|
|
Time: 30 * time.Second, // client ping server if no activity for this long
|
|
|
|
Timeout: 20 * time.Second,
|
2020-04-20 17:53:22 +08:00
|
|
|
PermitWithoutStream: false,
|
2019-02-17 04:49:58 +08:00
|
|
|
}))
|
|
|
|
for _, opt := range opts {
|
|
|
|
if opt != nil {
|
|
|
|
options = append(options, opt)
|
|
|
|
}
|
|
|
|
}
|
2019-03-16 08:20:24 +08:00
|
|
|
return grpc.DialContext(ctx, address, options...)
|
2018-07-04 10:07:55 +08:00
|
|
|
}
|
2018-12-07 17:25:01 +08:00
|
|
|
|
2020-07-04 13:25:35 +08:00
|
|
|
func getOrCreateConnection(address string, opts ...grpc.DialOption) (*grpc.ClientConn, error) {
|
2018-12-07 17:25:01 +08:00
|
|
|
|
|
|
|
grpcClientsLock.Lock()
|
2020-07-04 13:25:35 +08:00
|
|
|
defer grpcClientsLock.Unlock()
|
2018-12-07 17:25:01 +08:00
|
|
|
|
|
|
|
existingConnection, found := grpcClients[address]
|
|
|
|
if found {
|
2020-07-04 13:25:35 +08:00
|
|
|
return existingConnection, nil
|
2018-12-07 17:25:01 +08:00
|
|
|
}
|
|
|
|
|
2020-02-26 13:50:12 +08:00
|
|
|
grpcConnection, err := GrpcDial(context.Background(), address, opts...)
|
2018-12-07 17:25:01 +08:00
|
|
|
if err != nil {
|
2020-07-04 13:25:35 +08:00
|
|
|
return nil, fmt.Errorf("fail to dial %s: %v", address, err)
|
2018-12-07 17:25:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
grpcClients[address] = grpcConnection
|
|
|
|
|
2020-07-04 13:25:35 +08: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 17:25:01 +08:00
|
|
|
if err != nil {
|
2020-07-04 13:25:35 +08:00
|
|
|
return fmt.Errorf("getOrCreateConnection %s: %v", address, err)
|
2018-12-07 17:25:01 +08:00
|
|
|
}
|
2020-07-04 13:25:35 +08:00
|
|
|
return fn(grpcConnection)
|
2018-12-07 17:25:01 +08:00
|
|
|
}
|
2019-01-19 06:14:47 +08:00
|
|
|
|
2019-03-19 20:47:41 +08:00
|
|
|
func ParseServerToGrpcAddress(server string) (serverGrpcAddress string, err error) {
|
2021-03-07 06:25:44 +08:00
|
|
|
return ParseServerAddress(server, 10000)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ParseServerAddress(server string, deltaPort int) (newServerAddress string, err error) {
|
2019-01-19 06:14:47 +08:00
|
|
|
|
2021-03-03 12:59:39 +08:00
|
|
|
host, port, parseErr := hostAndPort(server)
|
2019-01-19 06:14:47 +08:00
|
|
|
if parseErr != nil {
|
2019-02-19 14:38:14 +08:00
|
|
|
return "", fmt.Errorf("server port parse error: %v", parseErr)
|
2019-01-19 06:14:47 +08:00
|
|
|
}
|
|
|
|
|
2021-03-07 06:25:44 +08:00
|
|
|
newPort := int(port) + deltaPort
|
2019-01-19 06:14:47 +08:00
|
|
|
|
2021-03-07 06:25:44 +08:00
|
|
|
return fmt.Sprintf("%s:%d", host, newPort), nil
|
2019-02-19 14:38:14 +08:00
|
|
|
}
|
|
|
|
|
2021-03-03 12:59:39 +08:00
|
|
|
func hostAndPort(address string) (host string, port uint64, err error) {
|
|
|
|
colonIndex := strings.LastIndex(address, ":")
|
|
|
|
if colonIndex < 0 {
|
|
|
|
return "", 0, fmt.Errorf("server should have hostname:port format: %v", address)
|
|
|
|
}
|
|
|
|
port, err = strconv.ParseUint(address[colonIndex+1:], 10, 64)
|
|
|
|
if err != nil {
|
2021-03-03 12:59:56 +08:00
|
|
|
return "", 0, fmt.Errorf("server port parse error: %v", err)
|
2019-02-19 14:38:14 +08:00
|
|
|
}
|
|
|
|
|
2021-03-03 12:59:39 +08:00
|
|
|
return address[:colonIndex], port, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ServerToGrpcAddress(server string) (serverGrpcAddress string) {
|
|
|
|
|
|
|
|
host, port, parseErr := hostAndPort(server)
|
2019-02-19 14:38:14 +08:00
|
|
|
if parseErr != nil {
|
2021-03-03 12:59:39 +08:00
|
|
|
glog.Fatalf("server address %s parse error: %v", server, parseErr)
|
2019-02-19 14:38:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
grpcPort := int(port) + 10000
|
|
|
|
|
2021-03-03 12:59:39 +08:00
|
|
|
return fmt.Sprintf("%s:%d", host, grpcPort)
|
2019-01-19 06:14:47 +08:00
|
|
|
}
|
2020-03-04 16:39:47 +08:00
|
|
|
|
2021-01-24 16:01:44 +08:00
|
|
|
func GrpcAddressToServerAddress(grpcAddress string) (serverAddress string) {
|
2021-03-03 12:59:39 +08:00
|
|
|
host, grpcPort, parseErr := hostAndPort(grpcAddress)
|
2021-01-24 16:01:44 +08:00
|
|
|
if parseErr != nil {
|
2021-03-03 12:59:39 +08:00
|
|
|
glog.Fatalf("server grpc address %s parse error: %v", grpcAddress, parseErr)
|
2021-01-24 16:01:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
port := int(grpcPort) - 10000
|
|
|
|
|
2021-03-03 12:59:39 +08:00
|
|
|
return fmt.Sprintf("%s:%d", host, port)
|
2021-01-24 16:01:44 +08:00
|
|
|
}
|
|
|
|
|
2020-03-04 16:39:47 +08: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)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-04-19 06:17:27 +08:00
|
|
|
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 16:39:47 +08: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)
|
|
|
|
|
|
|
|
}
|