You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

210 lines
7.5 KiB

5 years ago
6 years ago
5 years ago
6 years ago
6 years ago
13 years ago
6 years ago
6 years ago
5 years ago
6 years ago
6 years ago
6 years ago
13 years ago
6 years ago
4 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
5 years ago
6 years ago
6 years ago
4 years ago
6 years ago
6 years ago
5 years ago
6 years ago
6 years ago
5 years ago
5 years ago
6 years ago
6 years ago
  1. package command
  2. import (
  3. "github.com/chrislusf/raft/protobuf"
  4. "github.com/gorilla/mux"
  5. "google.golang.org/grpc/reflection"
  6. "net/http"
  7. "os"
  8. "sort"
  9. "strings"
  10. "time"
  11. "github.com/chrislusf/seaweedfs/weed/util/grace"
  12. "github.com/chrislusf/seaweedfs/weed/glog"
  13. "github.com/chrislusf/seaweedfs/weed/pb"
  14. "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
  15. "github.com/chrislusf/seaweedfs/weed/security"
  16. "github.com/chrislusf/seaweedfs/weed/server"
  17. "github.com/chrislusf/seaweedfs/weed/storage/backend"
  18. "github.com/chrislusf/seaweedfs/weed/util"
  19. )
  20. var (
  21. m MasterOptions
  22. )
  23. type MasterOptions struct {
  24. port *int
  25. ip *string
  26. ipBind *string
  27. metaFolder *string
  28. peers *string
  29. volumeSizeLimitMB *uint
  30. volumePreallocate *bool
  31. // pulseSeconds *int
  32. defaultReplication *string
  33. garbageThreshold *float64
  34. whiteList *string
  35. disableHttp *bool
  36. metricsAddress *string
  37. metricsIntervalSec *int
  38. raftResumeState *bool
  39. }
  40. func init() {
  41. cmdMaster.Run = runMaster // break init cycle
  42. m.port = cmdMaster.Flag.Int("port", 9333, "http listen port")
  43. m.ip = cmdMaster.Flag.String("ip", util.DetectedHostAddress(), "master <ip>|<server> address, also used as identifier")
  44. m.ipBind = cmdMaster.Flag.String("ip.bind", "", "ip address to bind to")
  45. m.metaFolder = cmdMaster.Flag.String("mdir", os.TempDir(), "data directory to store meta data")
  46. m.peers = cmdMaster.Flag.String("peers", "", "all master nodes in comma separated ip:port list, example: 127.0.0.1:9093,127.0.0.1:9094,127.0.0.1:9095")
  47. m.volumeSizeLimitMB = cmdMaster.Flag.Uint("volumeSizeLimitMB", 30*1000, "Master stops directing writes to oversized volumes.")
  48. m.volumePreallocate = cmdMaster.Flag.Bool("volumePreallocate", false, "Preallocate disk space for volumes.")
  49. // m.pulseSeconds = cmdMaster.Flag.Int("pulseSeconds", 5, "number of seconds between heartbeats")
  50. m.defaultReplication = cmdMaster.Flag.String("defaultReplication", "", "Default replication type if not specified.")
  51. m.garbageThreshold = cmdMaster.Flag.Float64("garbageThreshold", 0.3, "threshold to vacuum and reclaim spaces")
  52. m.whiteList = cmdMaster.Flag.String("whiteList", "", "comma separated Ip addresses having write permission. No limit if empty.")
  53. m.disableHttp = cmdMaster.Flag.Bool("disableHttp", false, "disable http requests, only gRPC operations are allowed.")
  54. m.metricsAddress = cmdMaster.Flag.String("metrics.address", "", "Prometheus gateway address <host>:<port>")
  55. m.metricsIntervalSec = cmdMaster.Flag.Int("metrics.intervalSeconds", 15, "Prometheus push interval in seconds")
  56. m.raftResumeState = cmdMaster.Flag.Bool("resumeState", false, "resume previous state on start master server")
  57. }
  58. var cmdMaster = &Command{
  59. UsageLine: "master -port=9333",
  60. Short: "start a master server",
  61. Long: `start a master server to provide volume=>location mapping service and sequence number of file ids
  62. The configuration file "security.toml" is read from ".", "$HOME/.seaweedfs/", "/usr/local/etc/seaweedfs/", or "/etc/seaweedfs/", in that order.
  63. The example security.toml configuration file can be generated by "weed scaffold -config=security"
  64. `,
  65. }
  66. var (
  67. masterCpuProfile = cmdMaster.Flag.String("cpuprofile", "", "cpu profile output file")
  68. masterMemProfile = cmdMaster.Flag.String("memprofile", "", "memory profile output file")
  69. )
  70. func runMaster(cmd *Command, args []string) bool {
  71. util.LoadConfiguration("security", false)
  72. util.LoadConfiguration("master", false)
  73. grace.SetupProfiling(*masterCpuProfile, *masterMemProfile)
  74. parent, _ := util.FullPath(*m.metaFolder).DirAndName()
  75. if util.FileExists(string(parent)) && !util.FileExists(*m.metaFolder) {
  76. os.MkdirAll(*m.metaFolder, 0755)
  77. }
  78. if err := util.TestFolderWritable(util.ResolvePath(*m.metaFolder)); err != nil {
  79. glog.Fatalf("Check Meta Folder (-mdir) Writable %s : %s", *m.metaFolder, err)
  80. }
  81. var masterWhiteList []string
  82. if *m.whiteList != "" {
  83. masterWhiteList = strings.Split(*m.whiteList, ",")
  84. }
  85. if *m.volumeSizeLimitMB > util.VolumeSizeLimitGB*1000 {
  86. glog.Fatalf("volumeSizeLimitMB should be smaller than 30000")
  87. }
  88. startMaster(m, masterWhiteList)
  89. return true
  90. }
  91. func startMaster(masterOption MasterOptions, masterWhiteList []string) {
  92. backend.LoadConfiguration(util.GetViper())
  93. myMasterAddress, peers := checkPeers(*masterOption.ip, *masterOption.port, *masterOption.peers)
  94. r := mux.NewRouter()
  95. ms := weed_server.NewMasterServer(r, masterOption.toMasterOption(masterWhiteList), peers)
  96. listeningAddress := util.JoinHostPort(*masterOption.ipBind, *masterOption.port)
  97. glog.V(0).Infof("Start Seaweed Master %s at %s", util.Version(), listeningAddress)
  98. masterListener, e := util.NewListener(listeningAddress, 0)
  99. if e != nil {
  100. glog.Fatalf("Master startup error: %v", e)
  101. }
  102. // start raftServer
  103. raftServer, err := weed_server.NewRaftServer(security.LoadClientTLS(util.GetViper(), "grpc.master"),
  104. peers, myMasterAddress, util.ResolvePath(*masterOption.metaFolder), ms.Topo, *masterOption.raftResumeState)
  105. if raftServer == nil {
  106. glog.Fatalf("please verify %s is writable, see https://github.com/chrislusf/seaweedfs/issues/717: %s", *masterOption.metaFolder, err)
  107. }
  108. ms.SetRaftServer(raftServer)
  109. r.HandleFunc("/cluster/status", raftServer.StatusHandler).Methods("GET")
  110. // starting grpc server
  111. grpcPort := *masterOption.port + 10000
  112. grpcL, err := util.NewListener(util.JoinHostPort(*masterOption.ipBind, grpcPort), 0)
  113. if err != nil {
  114. glog.Fatalf("master failed to listen on grpc port %d: %v", grpcPort, err)
  115. }
  116. grpcS := pb.NewGrpcServer(security.LoadServerTLS(util.GetViper(), "grpc.master"))
  117. master_pb.RegisterSeaweedServer(grpcS, ms)
  118. protobuf.RegisterRaftServer(grpcS, raftServer)
  119. reflection.Register(grpcS)
  120. glog.V(0).Infof("Start Seaweed Master %s grpc server at %s:%d", util.Version(), *masterOption.ipBind, grpcPort)
  121. go grpcS.Serve(grpcL)
  122. go func() {
  123. time.Sleep(1500 * time.Millisecond)
  124. if ms.Topo.RaftServer.Leader() == "" && ms.Topo.RaftServer.IsLogEmpty() && isTheFirstOne(myMasterAddress, peers) {
  125. if ms.MasterClient.FindLeaderFromOtherPeers(myMasterAddress) == "" {
  126. raftServer.DoJoinCommand()
  127. }
  128. }
  129. }()
  130. go ms.MasterClient.KeepConnectedToMaster()
  131. // start http server
  132. httpS := &http.Server{Handler: r}
  133. go httpS.Serve(masterListener)
  134. select {}
  135. }
  136. func checkPeers(masterIp string, masterPort int, peers string) (masterAddress string, cleanedPeers []string) {
  137. glog.V(0).Infof("current: %s:%d peers:%s", masterIp, masterPort, peers)
  138. masterAddress = util.JoinHostPort(masterIp, masterPort)
  139. if peers != "" {
  140. cleanedPeers = strings.Split(peers, ",")
  141. }
  142. hasSelf := false
  143. for _, peer := range cleanedPeers {
  144. if peer == masterAddress {
  145. hasSelf = true
  146. break
  147. }
  148. }
  149. if !hasSelf {
  150. cleanedPeers = append(cleanedPeers, masterAddress)
  151. }
  152. if len(cleanedPeers)%2 == 0 {
  153. glog.Fatalf("Only odd number of masters are supported!")
  154. }
  155. return
  156. }
  157. func isTheFirstOne(self string, peers []string) bool {
  158. sort.Strings(peers)
  159. if len(peers) <= 0 {
  160. return true
  161. }
  162. return self == peers[0]
  163. }
  164. func (m *MasterOptions) toMasterOption(whiteList []string) *weed_server.MasterOption {
  165. return &weed_server.MasterOption{
  166. Host: *m.ip,
  167. Port: *m.port,
  168. MetaFolder: *m.metaFolder,
  169. VolumeSizeLimitMB: uint32(*m.volumeSizeLimitMB),
  170. VolumePreallocate: *m.volumePreallocate,
  171. // PulseSeconds: *m.pulseSeconds,
  172. DefaultReplicaPlacement: *m.defaultReplication,
  173. GarbageThreshold: *m.garbageThreshold,
  174. WhiteList: whiteList,
  175. DisableHttp: *m.disableHttp,
  176. MetricsAddress: *m.metricsAddress,
  177. MetricsIntervalSec: *m.metricsIntervalSec,
  178. }
  179. }