2018-07-28 09:10:32 +00:00
|
|
|
package wdclient
|
2018-06-01 07:39:39 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2018-07-22 00:39:10 +00:00
|
|
|
"fmt"
|
2018-07-29 04:02:56 +00:00
|
|
|
"time"
|
2018-07-28 09:10:32 +00:00
|
|
|
|
2018-07-29 04:02:56 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2018-07-22 00:39:10 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
|
2018-07-04 02:07:55 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2018-08-01 02:12:36 +00:00
|
|
|
"math/rand"
|
2018-06-01 07:39:39 +00:00
|
|
|
)
|
|
|
|
|
2018-07-28 09:10:32 +00:00
|
|
|
type MasterClient struct {
|
|
|
|
ctx context.Context
|
|
|
|
name string
|
|
|
|
currentMaster string
|
|
|
|
masters []string
|
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
|
|
|
}
|
|
|
|
|
|
|
|
func NewMasterClient(ctx context.Context, clientName string, masters []string) *MasterClient {
|
|
|
|
return &MasterClient{
|
|
|
|
ctx: ctx,
|
|
|
|
name: clientName,
|
|
|
|
masters: masters,
|
2018-07-29 01:40:31 +00:00
|
|
|
vidMap: newVidMap(),
|
2018-07-28 09:10:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mc *MasterClient) GetMaster() string {
|
|
|
|
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() {
|
|
|
|
glog.V(0).Infof("%s bootstraps with masters %v", mc.name, 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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-28 09:10:32 +00:00
|
|
|
func (mc *MasterClient) tryAllMasters() {
|
|
|
|
for _, master := range mc.masters {
|
2019-01-18 22:14:47 +00:00
|
|
|
glog.V(0).Infof("Connecting to master %v", master)
|
|
|
|
gprcErr := withMasterClient(master, func(client master_pb.SeaweedClient) error {
|
|
|
|
|
2018-06-01 07:39:39 +00:00
|
|
|
stream, err := client.KeepConnected(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infof("failed to keep connected to %s: %v", master, err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-07-28 09:10:32 +00:00
|
|
|
if err = stream.Send(&master_pb.ClientListenRequest{Name: mc.name}); err != nil {
|
2018-07-28 06:09:55 +00:00
|
|
|
glog.V(0).Infof("failed to send to %s: %v", master, err)
|
|
|
|
return err
|
|
|
|
}
|
2018-06-01 07:39:39 +00:00
|
|
|
|
2019-01-22 07:58:37 +00:00
|
|
|
if mc.currentMaster == "" {
|
|
|
|
glog.V(0).Infof("Connected to %v", master)
|
|
|
|
mc.currentMaster = master
|
|
|
|
}
|
|
|
|
|
2018-07-28 06:09:55 +00:00
|
|
|
for {
|
|
|
|
if volumeLocation, err := stream.Recv(); err != nil {
|
2018-06-01 07:39:39 +00:00
|
|
|
glog.V(0).Infof("failed to receive from %s: %v", master, err)
|
|
|
|
return err
|
2018-07-28 06:09:55 +00:00
|
|
|
} else {
|
2018-07-28 21:22:46 +00:00
|
|
|
loc := Location{
|
|
|
|
Url: volumeLocation.Url,
|
|
|
|
PublicUrl: volumeLocation.PublicUrl,
|
|
|
|
}
|
|
|
|
for _, newVid := range volumeLocation.NewVids {
|
2018-07-29 01:34:15 +00:00
|
|
|
mc.addLocation(newVid, loc)
|
2018-07-28 21:22:46 +00:00
|
|
|
}
|
|
|
|
for _, deletedVid := range volumeLocation.DeletedVids {
|
2018-07-29 01:34:15 +00:00
|
|
|
mc.deleteLocation(deletedVid, loc)
|
2018-07-28 21:22:46 +00:00
|
|
|
}
|
2018-06-01 07:39:39 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-01 02:12:36 +00:00
|
|
|
|
2018-06-01 07:39:39 +00:00
|
|
|
})
|
2018-08-01 02:12:36 +00:00
|
|
|
|
2019-01-18 22:14:47 +00:00
|
|
|
if gprcErr != nil {
|
|
|
|
glog.V(0).Infof("%s failed to connect with master %v: %v", mc.name, master, gprcErr)
|
|
|
|
}
|
|
|
|
|
2018-07-28 09:10:32 +00:00
|
|
|
mc.currentMaster = ""
|
2018-06-01 07:39:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func withMasterClient(master string, fn func(client master_pb.SeaweedClient) error) error {
|
|
|
|
|
2019-01-18 22:14:47 +00:00
|
|
|
masterGrpcAddress, parseErr := util.ParseServerToGrpcAddress(master, 0)
|
|
|
|
if parseErr != nil {
|
|
|
|
return fmt.Errorf("failed to parse master grpc %v", master)
|
|
|
|
}
|
|
|
|
|
|
|
|
grpcConnection, err := util.GrpcDial(masterGrpcAddress)
|
2018-06-01 07:39:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("fail to dial %s: %v", master, err)
|
|
|
|
}
|
|
|
|
defer grpcConnection.Close()
|
|
|
|
|
|
|
|
client := master_pb.NewSeaweedClient(grpcConnection)
|
|
|
|
|
|
|
|
return fn(client)
|
|
|
|
}
|