aboutsummaryrefslogtreecommitdiff
path: root/weed/filer2/filer_master.go
blob: 63c3ef4520a23be3f475f5b12aa2f4ce85f401b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package filer2

import (
	"context"
	"fmt"
	"time"

	"github.com/chrislusf/seaweedfs/weed/glog"
	"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
	"github.com/chrislusf/seaweedfs/weed/util"
)

func (fs *Filer) GetMaster() string {
	return fs.currentMaster
}

func (fs *Filer) KeepConnectedToMaster() {
	glog.V(0).Infof("Filer bootstraps with masters %v", fs.masters)
	for _, master := range fs.masters {
		glog.V(0).Infof("Connecting to %v", master)
		withMasterClient(master, func(client master_pb.SeaweedClient) error {
			stream, err := client.KeepConnected(context.Background())
			if err != nil {
				glog.V(0).Infof("failed to keep connected to %s: %v", master, err)
				return err
			}

			glog.V(0).Infof("Connected to %v", master)
			fs.currentMaster = master

			for {
				time.Sleep(time.Duration(float32(10*1e3)*0.25) * time.Millisecond)

				if err = stream.Send(&master_pb.Empty{}); err != nil {
					glog.V(0).Infof("failed to send to %s: %v", master, err)
					return err
				}

				if _, err = stream.Recv(); err != nil {
					glog.V(0).Infof("failed to receive from %s: %v", master, err)
					return err
				}
			}
		})
		fs.currentMaster = ""
	}
}

func withMasterClient(master string, fn func(client master_pb.SeaweedClient) error) error {

	grpcConnection, err := util.GrpcDial(master)
	if err != nil {
		return fmt.Errorf("fail to dial %s: %v", master, err)
	}
	defer grpcConnection.Close()

	client := master_pb.NewSeaweedClient(grpcConnection)

	return fn(client)
}