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