2018-07-28 02:10:32 -07:00
|
|
|
package wdclient
|
2018-06-01 00:39:39 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2019-02-18 12:11:52 -08:00
|
|
|
"math/rand"
|
2018-07-28 21:02:56 -07:00
|
|
|
"time"
|
2018-07-28 02:10:32 -07:00
|
|
|
|
2020-11-01 01:40:16 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2020-03-01 22:13:47 -08:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2018-07-28 21:02:56 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2020-03-04 00:39:47 -08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb"
|
2018-07-21 17:39:10 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
|
2018-06-01 00:39:39 -07:00
|
|
|
)
|
|
|
|
|
2018-07-28 02:10:32 -07:00
|
|
|
type MasterClient struct {
|
2020-04-12 17:51:31 -07:00
|
|
|
clientType string
|
2020-04-18 15:17:27 -07:00
|
|
|
clientHost string
|
2020-03-01 22:13:47 -08:00
|
|
|
grpcPort uint32
|
2019-02-18 12:11:52 -08:00
|
|
|
currentMaster string
|
|
|
|
masters []string
|
|
|
|
grpcDialOption grpc.DialOption
|
2018-07-28 14:22:46 -07:00
|
|
|
|
2018-07-28 18:40:31 -07:00
|
|
|
vidMap
|
2018-07-28 02:10:32 -07:00
|
|
|
}
|
|
|
|
|
2020-11-12 02:13:33 +05:00
|
|
|
func NewMasterClient(grpcDialOption grpc.DialOption, clientType string, clientHost string, clientGrpcPort uint32, clientDataCenter string, masters []string) *MasterClient {
|
2018-07-28 02:10:32 -07:00
|
|
|
return &MasterClient{
|
2020-04-12 17:51:31 -07:00
|
|
|
clientType: clientType,
|
2020-04-18 15:17:27 -07:00
|
|
|
clientHost: clientHost,
|
2020-03-01 22:13:47 -08:00
|
|
|
grpcPort: clientGrpcPort,
|
2019-02-18 12:11:52 -08:00
|
|
|
masters: masters,
|
|
|
|
grpcDialOption: grpcDialOption,
|
2020-11-12 02:13:33 +05:00
|
|
|
vidMap: newVidMap(clientDataCenter),
|
2018-07-28 02:10:32 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mc *MasterClient) GetMaster() string {
|
|
|
|
return mc.currentMaster
|
2018-06-01 00:39:39 -07:00
|
|
|
}
|
|
|
|
|
2018-07-31 19:12:36 -07:00
|
|
|
func (mc *MasterClient) WaitUntilConnected() {
|
|
|
|
for mc.currentMaster == "" {
|
|
|
|
time.Sleep(time.Duration(rand.Int31n(200)) * time.Millisecond)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-28 02:10:32 -07:00
|
|
|
func (mc *MasterClient) KeepConnectedToMaster() {
|
2020-06-20 12:50:40 -07:00
|
|
|
glog.V(1).Infof("%s masterClient bootstraps with masters %v", mc.clientType, mc.masters)
|
2018-07-27 23:09:55 -07:00
|
|
|
for {
|
2018-07-28 02:10:32 -07:00
|
|
|
mc.tryAllMasters()
|
2018-07-27 23:09:55 -07:00
|
|
|
time.Sleep(time.Second)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-16 11:02:44 -07:00
|
|
|
func (mc *MasterClient) FindLeaderFromOtherPeers(myMasterAddress string) (leader string) {
|
2020-10-07 01:25:39 -07:00
|
|
|
for _, master := range mc.masters {
|
|
|
|
if master == myMasterAddress {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if grpcErr := pb.WithMasterClient(master, mc.grpcDialOption, func(client master_pb.SeaweedClient) error {
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 120*time.Millisecond)
|
|
|
|
defer cancel()
|
|
|
|
resp, err := client.GetMasterConfiguration(ctx, &master_pb.GetMasterConfigurationRequest{})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
leader = resp.Leader
|
|
|
|
return nil
|
|
|
|
}); grpcErr != nil {
|
|
|
|
glog.V(0).Infof("connect to %s: %v", master, grpcErr)
|
|
|
|
}
|
|
|
|
if leader != "" {
|
|
|
|
glog.V(0).Infof("existing leader is %s", leader)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
glog.V(0).Infof("No existing leader found!")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-07-28 02:10:32 -07:00
|
|
|
func (mc *MasterClient) tryAllMasters() {
|
2019-07-31 01:54:42 -07:00
|
|
|
nextHintedLeader := ""
|
2018-07-28 02:10:32 -07:00
|
|
|
for _, master := range mc.masters {
|
2019-01-18 14:14:47 -08:00
|
|
|
|
2019-07-31 01:54:42 -07:00
|
|
|
nextHintedLeader = mc.tryConnectToMaster(master)
|
|
|
|
for nextHintedLeader != "" {
|
|
|
|
nextHintedLeader = mc.tryConnectToMaster(nextHintedLeader)
|
|
|
|
}
|
|
|
|
|
|
|
|
mc.currentMaster = ""
|
2020-11-12 02:13:33 +05:00
|
|
|
mc.vidMap = newVidMap("")
|
2019-07-31 01:54:42 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mc *MasterClient) tryConnectToMaster(master string) (nextHintedLeader string) {
|
2020-06-20 12:50:40 -07:00
|
|
|
glog.V(1).Infof("%s masterClient Connecting to master %v", mc.clientType, master)
|
2020-03-04 00:39:47 -08:00
|
|
|
gprcErr := pb.WithMasterClient(master, mc.grpcDialOption, func(client master_pb.SeaweedClient) error {
|
2019-07-31 01:54:42 -07:00
|
|
|
|
2020-09-09 12:07:15 -07:00
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
stream, err := client.KeepConnected(ctx)
|
2019-07-31 01:54:42 -07:00
|
|
|
if err != nil {
|
2020-10-07 01:25:39 -07:00
|
|
|
glog.V(1).Infof("%s masterClient failed to keep connected to %s: %v", mc.clientType, master, err)
|
2019-07-31 01:54:42 -07:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-04-12 17:51:31 -07:00
|
|
|
if err = stream.Send(&master_pb.KeepConnectedRequest{Name: mc.clientType, GrpcPort: mc.grpcPort}); err != nil {
|
2020-06-20 12:50:40 -07:00
|
|
|
glog.V(0).Infof("%s masterClient failed to send to %s: %v", mc.clientType, master, err)
|
2019-07-31 01:54:42 -07:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-06-20 12:50:40 -07:00
|
|
|
glog.V(1).Infof("%s masterClient Connected to %v", mc.clientType, master)
|
2019-10-09 21:00:40 -07:00
|
|
|
mc.currentMaster = master
|
2019-07-31 01:54:42 -07:00
|
|
|
|
|
|
|
for {
|
|
|
|
volumeLocation, err := stream.Recv()
|
2018-06-01 00:39:39 -07:00
|
|
|
if err != nil {
|
2020-06-20 12:50:40 -07:00
|
|
|
glog.V(0).Infof("%s masterClient failed to receive from %s: %v", mc.clientType, master, err)
|
2018-06-01 00:39:39 -07:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-07-31 01:54:42 -07:00
|
|
|
// maybe the leader is changed
|
|
|
|
if volumeLocation.Leader != "" {
|
2019-12-11 21:40:33 -08:00
|
|
|
glog.V(0).Infof("redirected to leader %v", volumeLocation.Leader)
|
2019-07-31 01:54:42 -07:00
|
|
|
nextHintedLeader = volumeLocation.Leader
|
|
|
|
return nil
|
2018-07-27 23:09:55 -07:00
|
|
|
}
|
2018-06-01 00:39:39 -07:00
|
|
|
|
2019-07-31 01:54:42 -07:00
|
|
|
// process new volume location
|
|
|
|
loc := Location{
|
2020-11-11 15:03:47 +05:00
|
|
|
Url: volumeLocation.Url,
|
|
|
|
PublicUrl: volumeLocation.PublicUrl,
|
|
|
|
DataCenter: volumeLocation.DataCenter,
|
2019-01-22 15:58:37 +08:00
|
|
|
}
|
2019-07-31 01:54:42 -07:00
|
|
|
for _, newVid := range volumeLocation.NewVids {
|
2020-06-20 12:50:40 -07:00
|
|
|
glog.V(1).Infof("%s: %s masterClient adds volume %d", mc.clientType, loc.Url, newVid)
|
2019-07-31 01:54:42 -07:00
|
|
|
mc.addLocation(newVid, loc)
|
|
|
|
}
|
|
|
|
for _, deletedVid := range volumeLocation.DeletedVids {
|
2020-06-20 12:50:40 -07:00
|
|
|
glog.V(1).Infof("%s: %s masterClient removes volume %d", mc.clientType, loc.Url, deletedVid)
|
2019-07-31 01:54:42 -07:00
|
|
|
mc.deleteLocation(deletedVid, loc)
|
2018-06-01 00:39:39 -07:00
|
|
|
}
|
2019-01-18 14:14:47 -08:00
|
|
|
}
|
|
|
|
|
2019-07-31 01:54:42 -07:00
|
|
|
})
|
|
|
|
if gprcErr != nil {
|
2020-10-07 01:25:39 -07:00
|
|
|
glog.V(1).Infof("%s masterClient failed to connect with master %v: %v", mc.clientType, master, gprcErr)
|
2018-06-01 00:39:39 -07:00
|
|
|
}
|
2019-07-31 01:54:42 -07:00
|
|
|
return
|
2018-06-01 00:39:39 -07:00
|
|
|
}
|
|
|
|
|
2020-02-25 21:50:12 -08:00
|
|
|
func (mc *MasterClient) WithClient(fn func(client master_pb.SeaweedClient) error) error {
|
2020-11-01 02:36:43 -08:00
|
|
|
return util.Retry("master grpc", func() error {
|
2020-11-01 01:40:16 -07:00
|
|
|
for mc.currentMaster == "" {
|
|
|
|
time.Sleep(3 * time.Second)
|
|
|
|
}
|
|
|
|
return pb.WithMasterClient(mc.currentMaster, mc.grpcDialOption, func(client master_pb.SeaweedClient) error {
|
|
|
|
return fn(client)
|
|
|
|
})
|
2019-03-19 05:19:37 -07:00
|
|
|
})
|
|
|
|
}
|