2018-07-28 17:10:32 +08:00
|
|
|
package wdclient
|
2018-06-01 15:39:39 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-07-15 18:29:15 +08:00
|
|
|
"fmt"
|
2019-02-19 04:11:52 +08:00
|
|
|
"math/rand"
|
2022-08-27 01:18:49 +08:00
|
|
|
"sync"
|
2018-07-29 12:02:56 +08:00
|
|
|
"time"
|
2018-07-28 17:10:32 +08:00
|
|
|
|
2022-08-24 14:18:21 +08:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/stats"
|
|
|
|
|
2022-07-29 15:17:28 +08:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
2020-03-02 14:13:47 +08:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2022-07-29 15:17:28 +08:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/master_pb"
|
2018-06-01 15:39:39 +08:00
|
|
|
)
|
|
|
|
|
2018-07-28 17:10:32 +08:00
|
|
|
type MasterClient struct {
|
2022-08-30 15:07:15 +08:00
|
|
|
FilerGroup string
|
|
|
|
clientType string
|
|
|
|
clientHost pb.ServerAddress
|
|
|
|
rack string
|
|
|
|
currentMaster pb.ServerAddress
|
|
|
|
currentMasterLock sync.RWMutex
|
|
|
|
masters map[string]pb.ServerAddress
|
|
|
|
grpcDialOption grpc.DialOption
|
2018-07-29 05:22:46 +08:00
|
|
|
|
2022-09-06 11:00:16 +08:00
|
|
|
*vidMap
|
2022-08-30 15:05:38 +08:00
|
|
|
vidMapCacheSize int
|
2022-08-27 01:23:42 +08:00
|
|
|
OnPeerUpdate func(update *master_pb.ClusterNodeUpdate, startFrom time.Time)
|
|
|
|
OnPeerUpdateLock sync.RWMutex
|
2018-07-28 17:10:32 +08:00
|
|
|
}
|
|
|
|
|
2022-07-03 15:29:25 +08: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 17:10:32 +08:00
|
|
|
return &MasterClient{
|
2022-07-22 17:22:38 +08:00
|
|
|
FilerGroup: filerGroup,
|
|
|
|
clientType: clientType,
|
|
|
|
clientHost: clientHost,
|
2022-07-29 16:15:19 +08:00
|
|
|
rack: rack,
|
2022-07-22 17:22:38 +08:00
|
|
|
masters: masters,
|
|
|
|
grpcDialOption: grpcDialOption,
|
|
|
|
vidMap: newVidMap(clientDataCenter),
|
|
|
|
vidMapCacheSize: 5,
|
2018-07-28 17:10:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-27 01:18:49 +08:00
|
|
|
func (mc *MasterClient) SetOnPeerUpdateFn(onPeerUpdate func(update *master_pb.ClusterNodeUpdate, startFrom time.Time)) {
|
2022-08-27 01:23:42 +08:00
|
|
|
mc.OnPeerUpdateLock.Lock()
|
2022-08-27 01:18:49 +08:00
|
|
|
mc.OnPeerUpdate = onPeerUpdate
|
2022-08-27 01:23:42 +08:00
|
|
|
mc.OnPeerUpdateLock.Unlock()
|
2022-08-27 01:18:49 +08:00
|
|
|
}
|
|
|
|
|
2022-06-24 17:08:57 +08: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 18:29:15 +08:00
|
|
|
if err == nil && len(fullUrls) > 0 {
|
2022-06-26 00:22:49 +08:00
|
|
|
return
|
|
|
|
}
|
2022-08-31 00:52:06 +08:00
|
|
|
err = pb.WithMasterClient(false, mc.GetMaster(), mc.grpcDialOption, false, func(client master_pb.SeaweedClient) error {
|
2022-06-24 17:08:57 +08:00
|
|
|
resp, err := client.LookupVolume(context.Background(), &master_pb.LookupVolumeRequest{
|
|
|
|
VolumeOrFileIds: []string{fileId},
|
|
|
|
})
|
|
|
|
if err != nil {
|
2022-08-31 00:43:17 +08:00
|
|
|
return fmt.Errorf("LookupVolume %s failed: %v", fileId, err)
|
2022-06-24 17:08:57 +08:00
|
|
|
}
|
|
|
|
for vid, vidLocation := range resp.VolumeIdLocations {
|
|
|
|
for _, vidLoc := range vidLocation.Locations {
|
|
|
|
loc := Location{
|
2022-08-05 08:35:00 +08:00
|
|
|
Url: vidLoc.Url,
|
|
|
|
PublicUrl: vidLoc.PublicUrl,
|
|
|
|
GrpcPort: int(vidLoc.GrpcPort),
|
|
|
|
DataCenter: vidLoc.DataCenter,
|
2022-06-24 17:08:57 +08:00
|
|
|
}
|
|
|
|
mc.vidMap.addLocation(uint32(vid), loc)
|
2022-08-05 08:35:00 +08:00
|
|
|
httpUrl := "http://" + loc.Url + "/" + fileId
|
|
|
|
// Prefer same data center
|
|
|
|
if mc.DataCenter != "" && mc.DataCenter == loc.DataCenter {
|
|
|
|
fullUrls = append([]string{httpUrl}, fullUrls...)
|
|
|
|
} else {
|
|
|
|
fullUrls = append(fullUrls, httpUrl)
|
|
|
|
}
|
2022-06-24 17:08:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-08-30 15:05:38 +08:00
|
|
|
func (mc *MasterClient) getCurrentMaster() pb.ServerAddress {
|
2022-08-30 15:07:15 +08:00
|
|
|
mc.currentMasterLock.RLock()
|
|
|
|
defer mc.currentMasterLock.RUnlock()
|
2022-08-30 15:05:38 +08:00
|
|
|
return mc.currentMaster
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mc *MasterClient) setCurrentMaster(master pb.ServerAddress) {
|
2022-08-30 15:07:15 +08:00
|
|
|
mc.currentMasterLock.Lock()
|
2022-08-30 15:05:38 +08:00
|
|
|
mc.currentMaster = master
|
2022-08-30 15:07:15 +08:00
|
|
|
mc.currentMasterLock.Unlock()
|
2022-08-30 15:05:38 +08:00
|
|
|
}
|
|
|
|
|
2021-09-13 13:47:52 +08:00
|
|
|
func (mc *MasterClient) GetMaster() pb.ServerAddress {
|
2021-05-21 17:10:44 +08:00
|
|
|
mc.WaitUntilConnected()
|
2022-08-30 15:05:38 +08:00
|
|
|
return mc.getCurrentMaster()
|
2018-06-01 15:39:39 +08:00
|
|
|
}
|
|
|
|
|
2022-04-02 08:27:49 +08:00
|
|
|
func (mc *MasterClient) GetMasters() map[string]pb.ServerAddress {
|
|
|
|
mc.WaitUntilConnected()
|
|
|
|
return mc.masters
|
|
|
|
}
|
|
|
|
|
2018-08-01 10:12:36 +08:00
|
|
|
func (mc *MasterClient) WaitUntilConnected() {
|
2022-08-12 06:03:26 +08:00
|
|
|
for {
|
2022-08-30 15:05:38 +08:00
|
|
|
if mc.getCurrentMaster() != "" {
|
2022-08-12 06:03:26 +08:00
|
|
|
return
|
|
|
|
}
|
2018-08-01 10:12:36 +08:00
|
|
|
time.Sleep(time.Duration(rand.Int31n(200)) * time.Millisecond)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-06 08:52:15 +08:00
|
|
|
func (mc *MasterClient) KeepConnectedToMaster() {
|
2022-05-02 12:59:16 +08:00
|
|
|
glog.V(1).Infof("%s.%s masterClient bootstraps with masters %v", mc.FilerGroup, mc.clientType, mc.masters)
|
2018-07-28 14:09:55 +08:00
|
|
|
for {
|
2018-07-28 17:10:32 +08:00
|
|
|
mc.tryAllMasters()
|
2018-07-28 14:09:55 +08:00
|
|
|
time.Sleep(time.Second)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 13:47:52 +08:00
|
|
|
func (mc *MasterClient) FindLeaderFromOtherPeers(myMasterAddress pb.ServerAddress) (leader string) {
|
2020-10-07 16:25:39 +08:00
|
|
|
for _, master := range mc.masters {
|
|
|
|
if master == myMasterAddress {
|
|
|
|
continue
|
|
|
|
}
|
2022-08-24 14:18:21 +08:00
|
|
|
if grpcErr := pb.WithMasterClient(false, master, mc.grpcDialOption, false, func(client master_pb.SeaweedClient) error {
|
2020-10-07 16:25:39 +08: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 17:10:32 +08:00
|
|
|
func (mc *MasterClient) tryAllMasters() {
|
2021-09-13 13:47:52 +08:00
|
|
|
var nextHintedLeader pb.ServerAddress
|
2018-07-28 17:10:32 +08:00
|
|
|
for _, master := range mc.masters {
|
2019-07-31 16:54:42 +08:00
|
|
|
nextHintedLeader = mc.tryConnectToMaster(master)
|
|
|
|
for nextHintedLeader != "" {
|
|
|
|
nextHintedLeader = mc.tryConnectToMaster(nextHintedLeader)
|
|
|
|
}
|
2022-08-30 15:05:38 +08:00
|
|
|
mc.setCurrentMaster("")
|
2019-07-31 16:54:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 13:47:52 +08:00
|
|
|
func (mc *MasterClient) tryConnectToMaster(master pb.ServerAddress) (nextHintedLeader pb.ServerAddress) {
|
2022-05-02 12:59:16 +08:00
|
|
|
glog.V(1).Infof("%s.%s masterClient Connecting to master %v", mc.FilerGroup, mc.clientType, master)
|
2022-01-24 22:09:43 +08:00
|
|
|
stats.MasterClientConnectCounter.WithLabelValues("total").Inc()
|
2022-08-24 14:18:21 +08:00
|
|
|
gprcErr := pb.WithMasterClient(true, master, mc.grpcDialOption, false, func(client master_pb.SeaweedClient) error {
|
2020-09-10 03:07:15 +08:00
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
|
2021-11-06 08:52:15 +08:00
|
|
|
stream, err := client.KeepConnected(ctx)
|
2019-07-31 16:54:42 +08:00
|
|
|
if err != nil {
|
2022-05-02 12:59:16 +08:00
|
|
|
glog.V(1).Infof("%s.%s masterClient failed to keep connected to %s: %v", mc.FilerGroup, mc.clientType, master, err)
|
2022-02-05 14:57:51 +08:00
|
|
|
stats.MasterClientConnectCounter.WithLabelValues(stats.FailedToKeepConnected).Inc()
|
2019-07-31 16:54:42 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-06 08:52:15 +08:00
|
|
|
if err = stream.Send(&master_pb.KeepConnectedRequest{
|
2022-05-02 12:59:16 +08:00
|
|
|
FilerGroup: mc.FilerGroup,
|
2022-07-03 15:29:25 +08:00
|
|
|
DataCenter: mc.DataCenter,
|
|
|
|
Rack: mc.rack,
|
2021-11-03 14:38:45 +08:00
|
|
|
ClientType: mc.clientType,
|
|
|
|
ClientAddress: string(mc.clientHost),
|
|
|
|
Version: util.Version(),
|
|
|
|
}); err != nil {
|
2022-05-02 12:59:16 +08:00
|
|
|
glog.V(0).Infof("%s.%s masterClient failed to send to %s: %v", mc.FilerGroup, mc.clientType, master, err)
|
2022-02-05 14:57:51 +08:00
|
|
|
stats.MasterClientConnectCounter.WithLabelValues(stats.FailedToSend).Inc()
|
2019-07-31 16:54:42 +08:00
|
|
|
return err
|
|
|
|
}
|
2022-05-02 12:59:16 +08:00
|
|
|
glog.V(1).Infof("%s.%s masterClient Connected to %v", mc.FilerGroup, mc.clientType, master)
|
2022-06-24 17:41:46 +08: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 11:56:09 +08:00
|
|
|
|
|
|
|
// check if it is the leader to determine whether to reset the vidMap
|
2022-06-30 13:41:56 +08: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)
|
2022-08-04 16:44:54 +08:00
|
|
|
stats.MasterClientConnectCounter.WithLabelValues(stats.RedirectedToLeader).Inc()
|
2022-06-30 13:41:56 +08:00
|
|
|
return nil
|
|
|
|
}
|
2022-07-22 17:22:38 +08:00
|
|
|
mc.resetVidMap()
|
2022-06-30 13:41:56 +08:00
|
|
|
mc.updateVidMap(resp)
|
|
|
|
} else {
|
2022-07-22 17:22:38 +08:00
|
|
|
mc.resetVidMap()
|
2022-06-24 17:41:46 +08:00
|
|
|
}
|
2022-08-30 15:05:38 +08:00
|
|
|
mc.setCurrentMaster(master)
|
2019-07-31 16:54:42 +08:00
|
|
|
|
|
|
|
for {
|
2021-11-06 09:11:40 +08:00
|
|
|
resp, err := stream.Recv()
|
2018-06-01 15:39:39 +08:00
|
|
|
if err != nil {
|
2022-05-02 12:59:16 +08:00
|
|
|
glog.V(0).Infof("%s.%s masterClient failed to receive from %s: %v", mc.FilerGroup, mc.clientType, master, err)
|
2022-02-05 14:57:51 +08:00
|
|
|
stats.MasterClientConnectCounter.WithLabelValues(stats.FailedToReceive).Inc()
|
2018-06-01 15:39:39 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-06 09:11:40 +08:00
|
|
|
if resp.VolumeLocation != nil {
|
|
|
|
// maybe the leader is changed
|
2022-08-31 00:52:06 +08:00
|
|
|
if resp.VolumeLocation.Leader != "" && string(mc.GetMaster()) != resp.VolumeLocation.Leader {
|
|
|
|
glog.V(0).Infof("currentMaster %v redirected to leader %v", mc.GetMaster(), resp.VolumeLocation.Leader)
|
2021-11-06 09:11:40 +08:00
|
|
|
nextHintedLeader = pb.ServerAddress(resp.VolumeLocation.Leader)
|
2022-08-04 16:44:54 +08:00
|
|
|
stats.MasterClientConnectCounter.WithLabelValues(stats.RedirectedToLeader).Inc()
|
2021-11-06 09:11:40 +08:00
|
|
|
return nil
|
|
|
|
}
|
2022-06-30 13:41:56 +08:00
|
|
|
mc.updateVidMap(resp)
|
2018-07-28 14:09:55 +08:00
|
|
|
}
|
2018-06-01 15:39:39 +08:00
|
|
|
|
2021-11-06 19:07:38 +08:00
|
|
|
if resp.ClusterNodeUpdate != nil {
|
|
|
|
update := resp.ClusterNodeUpdate
|
2022-08-27 01:23:42 +08:00
|
|
|
mc.OnPeerUpdateLock.RLock()
|
2021-11-07 05:23:35 +08:00
|
|
|
if mc.OnPeerUpdate != nil {
|
2022-05-02 12:59:16 +08: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 12:27:48 +08:00
|
|
|
mc.OnPeerUpdate(update, time.Now())
|
2021-11-07 05:23:35 +08:00
|
|
|
}
|
2021-11-06 19:07:38 +08:00
|
|
|
}
|
2022-08-27 01:23:42 +08:00
|
|
|
mc.OnPeerUpdateLock.RUnlock()
|
2021-11-06 19:07:38 +08:00
|
|
|
}
|
2019-01-19 06:14:47 +08:00
|
|
|
}
|
2019-07-31 16:54:42 +08:00
|
|
|
})
|
|
|
|
if gprcErr != nil {
|
2022-02-05 14:57:51 +08:00
|
|
|
stats.MasterClientConnectCounter.WithLabelValues(stats.Failed).Inc()
|
2022-05-02 12:59:16 +08:00
|
|
|
glog.V(1).Infof("%s.%s masterClient failed to connect with master %v: %v", mc.FilerGroup, mc.clientType, master, gprcErr)
|
2018-06-01 15:39:39 +08:00
|
|
|
}
|
2019-07-31 16:54:42 +08:00
|
|
|
return
|
2018-06-01 15:39:39 +08:00
|
|
|
}
|
|
|
|
|
2022-06-30 13:41:56 +08:00
|
|
|
func (mc *MasterClient) updateVidMap(resp *master_pb.KeepConnectedResponse) {
|
2022-09-12 13:31:53 +08:00
|
|
|
if resp.VolumeLocation.IsEmptyUrl() {
|
|
|
|
glog.V(0).Infof("updateVidMap ignore short heartbeat: %+v", resp)
|
|
|
|
return
|
|
|
|
}
|
2022-06-30 13:41:56 +08:00
|
|
|
// 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-09-06 22:26:59 +08:00
|
|
|
glog.V(2).Infof("%s.%s: %s masterClient adds volume %d", mc.FilerGroup, mc.clientType, loc.Url, newVid)
|
2022-06-30 13:41:56 +08:00
|
|
|
mc.addLocation(newVid, loc)
|
|
|
|
}
|
|
|
|
for _, deletedVid := range resp.VolumeLocation.DeletedVids {
|
2022-09-06 22:26:59 +08:00
|
|
|
glog.V(2).Infof("%s.%s: %s masterClient removes volume %d", mc.FilerGroup, mc.clientType, loc.Url, deletedVid)
|
2022-06-30 13:41:56 +08:00
|
|
|
mc.deleteLocation(deletedVid, loc)
|
|
|
|
}
|
|
|
|
for _, newEcVid := range resp.VolumeLocation.NewEcVids {
|
2022-09-06 22:26:59 +08:00
|
|
|
glog.V(2).Infof("%s.%s: %s masterClient adds ec volume %d", mc.FilerGroup, mc.clientType, loc.Url, newEcVid)
|
2022-06-30 13:41:56 +08:00
|
|
|
mc.addEcLocation(newEcVid, loc)
|
|
|
|
}
|
|
|
|
for _, deletedEcVid := range resp.VolumeLocation.DeletedEcVids {
|
2022-09-06 22:26:59 +08:00
|
|
|
glog.V(2).Infof("%s.%s: %s masterClient removes ec volume %d", mc.FilerGroup, mc.clientType, loc.Url, deletedEcVid)
|
2022-06-30 13:41:56 +08:00
|
|
|
mc.deleteEcLocation(deletedEcVid, loc)
|
|
|
|
}
|
2022-09-06 22:26:59 +08:00
|
|
|
glog.V(1).Infof("updateVidMap(%s) %s.%s: %s volume add: %d, del: %d, add ec: %d del ec: %d",
|
|
|
|
resp.VolumeLocation.DataCenter, mc.FilerGroup, mc.clientType, loc.Url,
|
|
|
|
len(resp.VolumeLocation.NewVids), len(resp.VolumeLocation.DeletedVids),
|
|
|
|
len(resp.VolumeLocation.NewEcVids), len(resp.VolumeLocation.DeletedEcVids))
|
2022-06-30 13:41:56 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 16:15:03 +08:00
|
|
|
func (mc *MasterClient) WithClient(streamingMode bool, fn func(client master_pb.SeaweedClient) error) error {
|
2020-11-01 18:36:43 +08:00
|
|
|
return util.Retry("master grpc", func() error {
|
2022-08-31 00:52:06 +08:00
|
|
|
return pb.WithMasterClient(streamingMode, mc.GetMaster(), mc.grpcDialOption, false, func(client master_pb.SeaweedClient) error {
|
2020-11-01 16:40:16 +08:00
|
|
|
return fn(client)
|
|
|
|
})
|
2019-03-19 20:19:37 +08:00
|
|
|
})
|
|
|
|
}
|
2022-07-22 17:22:38 +08:00
|
|
|
|
|
|
|
func (mc *MasterClient) resetVidMap() {
|
2022-08-05 08:35:00 +08:00
|
|
|
tail := &vidMap{
|
|
|
|
vid2Locations: mc.vid2Locations,
|
|
|
|
ecVid2Locations: mc.ecVid2Locations,
|
|
|
|
DataCenter: mc.DataCenter,
|
|
|
|
cache: mc.cache,
|
|
|
|
}
|
2022-07-22 17:22:38 +08:00
|
|
|
|
2022-09-06 11:00:16 +08:00
|
|
|
nvm := newVidMap(mc.DataCenter)
|
|
|
|
nvm.cache = tail
|
|
|
|
mc.vidMap = nvm
|
|
|
|
|
|
|
|
//trim
|
2022-07-22 17:22:38 +08:00
|
|
|
for i := 0; i < mc.vidMapCacheSize && tail.cache != nil; i++ {
|
|
|
|
if i == mc.vidMapCacheSize-1 {
|
|
|
|
tail.cache = nil
|
|
|
|
} else {
|
|
|
|
tail = tail.cache
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|