2018-07-28 09:10:32 +00:00
|
|
|
package wdclient
|
2018-06-01 07:39:39 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-07-15 10:29:15 +00:00
|
|
|
"fmt"
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/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
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
2020-03-02 06:13:47 +00:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb"
|
|
|
|
"github.com/seaweedfs/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
|
2022-07-03 07:29:25 +00:00
|
|
|
rack string
|
2021-09-13 05:47:52 +00:00
|
|
|
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
|
2022-07-22 09:22:38 +00:00
|
|
|
vidMapCacheSize int
|
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-07-03 07:29:25 +00:00
|
|
|
func NewMasterClient(grpcDialOption grpc.DialOption, filerGroup string, clientType string, clientHost pb.ServerAddress, clientDataCenter string, rack string, masters map[string]pb.ServerAddress) *MasterClient {
|
2018-07-28 09:10:32 +00:00
|
|
|
return &MasterClient{
|
2022-07-22 09:22:38 +00:00
|
|
|
FilerGroup: filerGroup,
|
|
|
|
clientType: clientType,
|
|
|
|
clientHost: clientHost,
|
2022-07-29 08:15:19 +00:00
|
|
|
rack: rack,
|
2022-07-22 09:22:38 +00:00
|
|
|
masters: masters,
|
|
|
|
grpcDialOption: grpcDialOption,
|
|
|
|
vidMap: newVidMap(clientDataCenter),
|
|
|
|
vidMapCacheSize: 5,
|
2018-07-28 09:10:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-24 09:08:57 +00:00
|
|
|
func (mc *MasterClient) GetLookupFileIdFunction() LookupFileIdFunctionType {
|
|
|
|
return mc.LookupFileIdWithFallback
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mc *MasterClient) LookupFileIdWithFallback(fileId string) (fullUrls []string, err error) {
|
|
|
|
fullUrls, err = mc.vidMap.LookupFileId(fileId)
|
2022-07-15 10:29:15 +00:00
|
|
|
if err == nil && len(fullUrls) > 0 {
|
2022-06-25 16:22:49 +00:00
|
|
|
return
|
|
|
|
}
|
2022-06-24 09:08:57 +00:00
|
|
|
err = pb.WithMasterClient(false, mc.currentMaster, mc.grpcDialOption, func(client master_pb.SeaweedClient) error {
|
|
|
|
resp, err := client.LookupVolume(context.Background(), &master_pb.LookupVolumeRequest{
|
|
|
|
VolumeOrFileIds: []string{fileId},
|
|
|
|
})
|
|
|
|
if err != nil {
|
2022-07-15 10:29:15 +00:00
|
|
|
return fmt.Errorf("LookupVolume failed: %v", err)
|
2022-06-24 09:08:57 +00:00
|
|
|
}
|
|
|
|
for vid, vidLocation := range resp.VolumeIdLocations {
|
|
|
|
for _, vidLoc := range vidLocation.Locations {
|
|
|
|
loc := Location{
|
|
|
|
Url: vidLoc.Url,
|
|
|
|
PublicUrl: vidLoc.PublicUrl,
|
|
|
|
GrpcPort: int(vidLoc.GrpcPort),
|
|
|
|
}
|
|
|
|
mc.vidMap.addLocation(uint32(vid), loc)
|
2022-06-25 16:22:49 +00:00
|
|
|
fullUrls = append(fullUrls, "http://"+loc.Url+"/"+fileId)
|
2022-06-24 09:08:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
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 = ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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,
|
2022-07-03 07:29:25 +00:00
|
|
|
DataCenter: mc.DataCenter,
|
|
|
|
Rack: mc.rack,
|
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)
|
2022-06-24 09:41:46 +00:00
|
|
|
|
|
|
|
resp, err := stream.Recv()
|
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infof("%s.%s masterClient failed to receive from %s: %v", mc.FilerGroup, mc.clientType, master, err)
|
|
|
|
stats.MasterClientConnectCounter.WithLabelValues(stats.FailedToReceive).Inc()
|
|
|
|
return err
|
|
|
|
}
|
2022-06-25 03:56:09 +00:00
|
|
|
|
|
|
|
// check if it is the leader to determine whether to reset the vidMap
|
2022-06-30 05:41:56 +00:00
|
|
|
if resp.VolumeLocation != nil {
|
|
|
|
if resp.VolumeLocation.Leader != "" && string(master) != resp.VolumeLocation.Leader {
|
|
|
|
glog.V(0).Infof("master %v redirected to leader %v", master, resp.VolumeLocation.Leader)
|
|
|
|
nextHintedLeader = pb.ServerAddress(resp.VolumeLocation.Leader)
|
|
|
|
stats.MasterClientConnectCounter.WithLabelValues(stats.RedirectedToleader).Inc()
|
|
|
|
return nil
|
|
|
|
}
|
2022-07-22 09:22:38 +00:00
|
|
|
//mc.vidMap = newVidMap("")
|
|
|
|
mc.resetVidMap()
|
2022-06-30 05:41:56 +00:00
|
|
|
mc.updateVidMap(resp)
|
|
|
|
} else {
|
2022-07-22 09:22:38 +00:00
|
|
|
mc.resetVidMap()
|
|
|
|
//mc.vidMap = newVidMap("")
|
2022-06-24 09:41:46 +00:00
|
|
|
}
|
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
|
2022-06-27 16:55:16 +00:00
|
|
|
if resp.VolumeLocation.Leader != "" && string(mc.currentMaster) != resp.VolumeLocation.Leader {
|
|
|
|
glog.V(0).Infof("currentMaster %v redirected to leader %v", mc.currentMaster, resp.VolumeLocation.Leader)
|
2021-11-06 01:11:40 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2022-06-30 05:41:56 +00:00
|
|
|
mc.updateVidMap(resp)
|
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
|
|
|
}
|
|
|
|
|
2022-06-30 05:41:56 +00:00
|
|
|
func (mc *MasterClient) updateVidMap(resp *master_pb.KeepConnectedResponse) {
|
|
|
|
// 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 {
|
|
|
|
glog.V(1).Infof("%s.%s: %s masterClient adds volume %d", mc.FilerGroup, mc.clientType, loc.Url, newVid)
|
|
|
|
mc.addLocation(newVid, loc)
|
|
|
|
}
|
|
|
|
for _, deletedVid := range resp.VolumeLocation.DeletedVids {
|
|
|
|
glog.V(1).Infof("%s.%s: %s masterClient removes volume %d", mc.FilerGroup, mc.clientType, loc.Url, deletedVid)
|
|
|
|
mc.deleteLocation(deletedVid, loc)
|
|
|
|
}
|
|
|
|
for _, newEcVid := range resp.VolumeLocation.NewEcVids {
|
|
|
|
glog.V(1).Infof("%s.%s: %s masterClient adds ec volume %d", mc.FilerGroup, mc.clientType, loc.Url, newEcVid)
|
|
|
|
mc.addEcLocation(newEcVid, loc)
|
|
|
|
}
|
|
|
|
for _, deletedEcVid := range resp.VolumeLocation.DeletedEcVids {
|
|
|
|
glog.V(1).Infof("%s.%s: %s masterClient removes ec volume %d", mc.FilerGroup, mc.clientType, loc.Url, deletedEcVid)
|
|
|
|
mc.deleteEcLocation(deletedEcVid, loc)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
})
|
|
|
|
}
|
2022-07-22 09:22:38 +00:00
|
|
|
|
|
|
|
func (mc *MasterClient) resetVidMap() {
|
|
|
|
tail := &vidMap{vid2Locations: mc.vid2Locations, ecVid2Locations: mc.ecVid2Locations, cache: mc.cache}
|
|
|
|
mc.vidMap = newVidMap("")
|
|
|
|
mc.vidMap.cache = tail
|
|
|
|
|
|
|
|
for i := 0; i < mc.vidMapCacheSize && tail.cache != nil; i++ {
|
|
|
|
if i == mc.vidMapCacheSize-1 {
|
|
|
|
tail.cache = nil
|
|
|
|
} else {
|
|
|
|
tail = tail.cache
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|