2018-07-28 09:10:32 +00:00
|
|
|
package wdclient
|
2018-06-01 07:39:39 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-01-24 14:09:43 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/stats"
|
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 {
|
2022-05-02 04:59:16 +00:00
|
|
|
FilerGroup string
|
2020-04-13 00:51:31 +00:00
|
|
|
clientType string
|
2021-09-13 05:47:52 +00:00
|
|
|
clientHost pb.ServerAddress
|
|
|
|
currentMaster pb.ServerAddress
|
2022-03-26 20:33:17 +00:00
|
|
|
masters map[string]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
|
2021-11-06 21:23:35 +00:00
|
|
|
|
2022-05-31 04:27:48 +00:00
|
|
|
OnPeerUpdate func(update *master_pb.ClusterNodeUpdate, startFrom time.Time)
|
2018-07-28 09:10:32 +00:00
|
|
|
}
|
|
|
|
|
2022-05-02 04:59:16 +00:00
|
|
|
func NewMasterClient(grpcDialOption grpc.DialOption, filerGroup string, clientType string, clientHost pb.ServerAddress, clientDataCenter string, masters map[string]pb.ServerAddress) *MasterClient {
|
2018-07-28 09:10:32 +00:00
|
|
|
return &MasterClient{
|
2022-05-02 04:59:16 +00:00
|
|
|
FilerGroup: filerGroup,
|
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
|
|
|
}
|
|
|
|
|
2022-04-02 00:27:49 +00:00
|
|
|
func (mc *MasterClient) GetMasters() map[string]pb.ServerAddress {
|
|
|
|
mc.WaitUntilConnected()
|
|
|
|
return mc.masters
|
|
|
|
}
|
|
|
|
|
2018-08-01 02:12:36 +00:00
|
|
|
func (mc *MasterClient) WaitUntilConnected() {
|
|
|
|
for mc.currentMaster == "" {
|
|
|
|
time.Sleep(time.Duration(rand.Int31n(200)) * time.Millisecond)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-06 00:52:15 +00:00
|
|
|
func (mc *MasterClient) KeepConnectedToMaster() {
|
2022-05-02 04:59:16 +00:00
|
|
|
glog.V(1).Infof("%s.%s masterClient bootstraps with masters %v", mc.FilerGroup, 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
|
|
|
|
}
|
2021-12-26 08:15:03 +00:00
|
|
|
if grpcErr := pb.WithMasterClient(false, master, mc.grpcDialOption, func(client master_pb.SeaweedClient) error {
|
2020-10-07 08:25:39 +00:00
|
|
|
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) {
|
2022-05-02 04:59:16 +00:00
|
|
|
glog.V(1).Infof("%s.%s masterClient Connecting to master %v", mc.FilerGroup, mc.clientType, master)
|
2022-01-24 14:09:43 +00:00
|
|
|
stats.MasterClientConnectCounter.WithLabelValues("total").Inc()
|
2021-12-26 08:15:03 +00:00
|
|
|
gprcErr := pb.WithMasterClient(true, master, mc.grpcDialOption, func(client master_pb.SeaweedClient) error {
|
2020-09-09 19:07:15 +00:00
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
|
2021-11-06 00:52:15 +00:00
|
|
|
stream, err := client.KeepConnected(ctx)
|
2019-07-31 08:54:42 +00:00
|
|
|
if err != nil {
|
2022-05-02 04:59:16 +00:00
|
|
|
glog.V(1).Infof("%s.%s masterClient failed to keep connected to %s: %v", mc.FilerGroup, mc.clientType, master, err)
|
2022-02-05 06:57:51 +00:00
|
|
|
stats.MasterClientConnectCounter.WithLabelValues(stats.FailedToKeepConnected).Inc()
|
2019-07-31 08:54:42 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-06 00:52:15 +00:00
|
|
|
if err = stream.Send(&master_pb.KeepConnectedRequest{
|
2022-05-02 04:59:16 +00:00
|
|
|
FilerGroup: mc.FilerGroup,
|
2021-11-03 06:38:45 +00:00
|
|
|
ClientType: mc.clientType,
|
|
|
|
ClientAddress: string(mc.clientHost),
|
|
|
|
Version: util.Version(),
|
|
|
|
}); err != nil {
|
2022-05-02 04:59:16 +00:00
|
|
|
glog.V(0).Infof("%s.%s masterClient failed to send to %s: %v", mc.FilerGroup, mc.clientType, master, err)
|
2022-02-05 06:57:51 +00:00
|
|
|
stats.MasterClientConnectCounter.WithLabelValues(stats.FailedToSend).Inc()
|
2019-07-31 08:54:42 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-05-02 04:59:16 +00:00
|
|
|
glog.V(1).Infof("%s.%s masterClient Connected to %v", mc.FilerGroup, mc.clientType, master)
|
2019-10-10 04:00:40 +00:00
|
|
|
mc.currentMaster = master
|
2019-07-31 08:54:42 +00:00
|
|
|
|
|
|
|
for {
|
2021-11-06 01:11:40 +00:00
|
|
|
resp, err := stream.Recv()
|
2018-06-01 07:39:39 +00:00
|
|
|
if err != nil {
|
2022-05-02 04:59:16 +00:00
|
|
|
glog.V(0).Infof("%s.%s masterClient failed to receive from %s: %v", mc.FilerGroup, mc.clientType, master, err)
|
2022-02-05 06:57:51 +00:00
|
|
|
stats.MasterClientConnectCounter.WithLabelValues(stats.FailedToReceive).Inc()
|
2018-06-01 07:39:39 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-06 01:11:40 +00:00
|
|
|
if resp.VolumeLocation != nil {
|
|
|
|
// maybe the leader is changed
|
|
|
|
if resp.VolumeLocation.Leader != "" {
|
|
|
|
glog.V(0).Infof("redirected to leader %v", resp.VolumeLocation.Leader)
|
|
|
|
nextHintedLeader = pb.ServerAddress(resp.VolumeLocation.Leader)
|
2022-02-05 06:57:51 +00:00
|
|
|
stats.MasterClientConnectCounter.WithLabelValues(stats.RedirectedToleader).Inc()
|
2021-11-06 01:11:40 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// process new volume location
|
|
|
|
loc := Location{
|
|
|
|
Url: resp.VolumeLocation.Url,
|
|
|
|
PublicUrl: resp.VolumeLocation.PublicUrl,
|
|
|
|
DataCenter: resp.VolumeLocation.DataCenter,
|
|
|
|
GrpcPort: int(resp.VolumeLocation.GrpcPort),
|
|
|
|
}
|
|
|
|
for _, newVid := range resp.VolumeLocation.NewVids {
|
2022-05-02 04:59:16 +00:00
|
|
|
glog.V(1).Infof("%s.%s: %s masterClient adds volume %d", mc.FilerGroup, mc.clientType, loc.Url, newVid)
|
2021-11-06 01:11:40 +00:00
|
|
|
mc.addLocation(newVid, loc)
|
|
|
|
}
|
|
|
|
for _, deletedVid := range resp.VolumeLocation.DeletedVids {
|
2022-05-02 04:59:16 +00:00
|
|
|
glog.V(1).Infof("%s.%s: %s masterClient removes volume %d", mc.FilerGroup, mc.clientType, loc.Url, deletedVid)
|
2021-11-06 01:11:40 +00:00
|
|
|
mc.deleteLocation(deletedVid, loc)
|
|
|
|
}
|
2022-04-06 02:03:02 +00:00
|
|
|
for _, newEcVid := range resp.VolumeLocation.NewEcVids {
|
2022-05-02 04:59:16 +00:00
|
|
|
glog.V(1).Infof("%s.%s: %s masterClient adds ec volume %d", mc.FilerGroup, mc.clientType, loc.Url, newEcVid)
|
2022-04-06 02:03:02 +00:00
|
|
|
mc.addEcLocation(newEcVid, loc)
|
|
|
|
}
|
|
|
|
for _, deletedEcVid := range resp.VolumeLocation.DeletedEcVids {
|
2022-05-02 04:59:16 +00:00
|
|
|
glog.V(1).Infof("%s.%s: %s masterClient removes ec volume %d", mc.FilerGroup, mc.clientType, loc.Url, deletedEcVid)
|
2022-04-06 02:03:02 +00:00
|
|
|
mc.deleteEcLocation(deletedEcVid, loc)
|
|
|
|
}
|
2018-07-28 06:09:55 +00:00
|
|
|
}
|
2018-06-01 07:39:39 +00:00
|
|
|
|
2021-11-06 11:07:38 +00:00
|
|
|
if resp.ClusterNodeUpdate != nil {
|
|
|
|
update := resp.ClusterNodeUpdate
|
2021-11-06 21:23:35 +00:00
|
|
|
if mc.OnPeerUpdate != nil {
|
2022-05-02 04:59:16 +00:00
|
|
|
if update.FilerGroup == mc.FilerGroup {
|
|
|
|
if update.IsAdd {
|
|
|
|
glog.V(0).Infof("+ %s.%s %s leader:%v\n", update.FilerGroup, update.NodeType, update.Address, update.IsLeader)
|
|
|
|
} else {
|
|
|
|
glog.V(0).Infof("- %s.%s %s leader:%v\n", update.FilerGroup, update.NodeType, update.Address, update.IsLeader)
|
|
|
|
}
|
|
|
|
stats.MasterClientConnectCounter.WithLabelValues(stats.OnPeerUpdate).Inc()
|
2022-05-31 04:27:48 +00:00
|
|
|
mc.OnPeerUpdate(update, time.Now())
|
2021-11-06 21:23:35 +00:00
|
|
|
}
|
2021-11-06 11:07:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-18 22:14:47 +00:00
|
|
|
}
|
|
|
|
|
2019-07-31 08:54:42 +00:00
|
|
|
})
|
|
|
|
if gprcErr != nil {
|
2022-02-05 06:57:51 +00:00
|
|
|
stats.MasterClientConnectCounter.WithLabelValues(stats.Failed).Inc()
|
2022-05-02 04:59:16 +00:00
|
|
|
glog.V(1).Infof("%s.%s masterClient failed to connect with master %v: %v", mc.FilerGroup, 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
|
|
|
}
|
|
|
|
|
2021-12-26 08:15:03 +00:00
|
|
|
func (mc *MasterClient) WithClient(streamingMode bool, 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)
|
|
|
|
}
|
2021-12-26 08:15:03 +00:00
|
|
|
return pb.WithMasterClient(streamingMode, mc.currentMaster, mc.grpcDialOption, func(client master_pb.SeaweedClient) error {
|
2020-11-01 08:40:16 +00:00
|
|
|
return fn(client)
|
|
|
|
})
|
2019-03-19 12:19:37 +00:00
|
|
|
})
|
|
|
|
}
|