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.

359 lines
13 KiB

5 years ago
6 years ago
6 years ago
6 years ago
5 years ago
5 years ago
6 years ago
5 years ago
6 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
12 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
4 years ago
4 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. package command
  2. import (
  3. "fmt"
  4. "net/http"
  5. httppprof "net/http/pprof"
  6. "os"
  7. "runtime"
  8. "runtime/pprof"
  9. "strconv"
  10. "strings"
  11. "time"
  12. "github.com/spf13/viper"
  13. "google.golang.org/grpc"
  14. "github.com/chrislusf/seaweedfs/weed/util/grace"
  15. "github.com/chrislusf/seaweedfs/weed/pb"
  16. "github.com/chrislusf/seaweedfs/weed/security"
  17. "github.com/chrislusf/seaweedfs/weed/util/httpdown"
  18. "google.golang.org/grpc/reflection"
  19. "github.com/chrislusf/seaweedfs/weed/glog"
  20. "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
  21. "github.com/chrislusf/seaweedfs/weed/server"
  22. stats_collect "github.com/chrislusf/seaweedfs/weed/stats"
  23. "github.com/chrislusf/seaweedfs/weed/storage"
  24. "github.com/chrislusf/seaweedfs/weed/util"
  25. )
  26. var (
  27. v VolumeServerOptions
  28. )
  29. type VolumeServerOptions struct {
  30. port *int
  31. publicPort *int
  32. folders []string
  33. folderMaxLimits []int
  34. idxFolder *string
  35. ip *string
  36. publicUrl *string
  37. bindIp *string
  38. masters *string
  39. idleConnectionTimeout *int
  40. dataCenter *string
  41. rack *string
  42. whiteList []string
  43. indexType *string
  44. diskType *string
  45. fixJpgOrientation *bool
  46. readRedirect *bool
  47. cpuProfile *string
  48. memProfile *string
  49. compactionMBPerSecond *int
  50. fileSizeLimitMB *int
  51. minFreeSpacePercents []float32
  52. pprof *bool
  53. preStopSeconds *int
  54. metricsHttpPort *int
  55. // pulseSeconds *int
  56. }
  57. func init() {
  58. cmdVolume.Run = runVolume // break init cycle
  59. v.port = cmdVolume.Flag.Int("port", 8080, "http listen port")
  60. v.publicPort = cmdVolume.Flag.Int("port.public", 0, "port opened to public")
  61. v.ip = cmdVolume.Flag.String("ip", util.DetectedHostAddress(), "ip or server name")
  62. v.publicUrl = cmdVolume.Flag.String("publicUrl", "", "Publicly accessible address")
  63. v.bindIp = cmdVolume.Flag.String("ip.bind", "0.0.0.0", "ip address to bind to")
  64. v.masters = cmdVolume.Flag.String("mserver", "localhost:9333", "comma-separated master servers")
  65. v.preStopSeconds = cmdVolume.Flag.Int("preStopSeconds", 10, "number of seconds between stop send heartbeats and stop volume server")
  66. // v.pulseSeconds = cmdVolume.Flag.Int("pulseSeconds", 5, "number of seconds between heartbeats, must be smaller than or equal to the master's setting")
  67. v.idleConnectionTimeout = cmdVolume.Flag.Int("idleTimeout", 30, "connection idle seconds")
  68. v.dataCenter = cmdVolume.Flag.String("dataCenter", "", "current volume server's data center name")
  69. v.rack = cmdVolume.Flag.String("rack", "", "current volume server's rack name")
  70. v.indexType = cmdVolume.Flag.String("index", "memory", "Choose [memory|leveldb|leveldbMedium|leveldbLarge] mode for memory~performance balance.")
  71. v.diskType = cmdVolume.Flag.String("disk", "", "[hdd|ssd] choose between hard drive or solid state drive")
  72. v.fixJpgOrientation = cmdVolume.Flag.Bool("images.fix.orientation", false, "Adjust jpg orientation when uploading.")
  73. v.readRedirect = cmdVolume.Flag.Bool("read.redirect", true, "Redirect moved or non-local volumes.")
  74. v.cpuProfile = cmdVolume.Flag.String("cpuprofile", "", "cpu profile output file")
  75. v.memProfile = cmdVolume.Flag.String("memprofile", "", "memory profile output file")
  76. v.compactionMBPerSecond = cmdVolume.Flag.Int("compactionMBps", 0, "limit background compaction or copying speed in mega bytes per second")
  77. v.fileSizeLimitMB = cmdVolume.Flag.Int("fileSizeLimitMB", 256, "limit file size to avoid out of memory")
  78. v.pprof = cmdVolume.Flag.Bool("pprof", false, "enable pprof http handlers. precludes --memprofile and --cpuprofile")
  79. v.metricsHttpPort = cmdVolume.Flag.Int("metricsPort", 0, "Prometheus metrics listen port")
  80. v.idxFolder = cmdVolume.Flag.String("dir.idx", "", "directory to store .idx files")
  81. }
  82. var cmdVolume = &Command{
  83. UsageLine: "volume -port=8080 -dir=/tmp -max=5 -ip=server_name -mserver=localhost:9333",
  84. Short: "start a volume server",
  85. Long: `start a volume server to provide storage spaces
  86. `,
  87. }
  88. var (
  89. volumeFolders = cmdVolume.Flag.String("dir", os.TempDir(), "directories to store data files. dir[,dir]...")
  90. maxVolumeCounts = cmdVolume.Flag.String("max", "8", "maximum numbers of volumes, count[,count]... If set to zero, the limit will be auto configured.")
  91. volumeWhiteListOption = cmdVolume.Flag.String("whiteList", "", "comma separated Ip addresses having write permission. No limit if empty.")
  92. minFreeSpacePercent = cmdVolume.Flag.String("minFreeSpacePercent", "1", "minimum free disk space (default to 1%). Low disk space will mark all volumes as ReadOnly.")
  93. )
  94. func runVolume(cmd *Command, args []string) bool {
  95. util.LoadConfiguration("security", false)
  96. runtime.GOMAXPROCS(runtime.NumCPU())
  97. // If --pprof is set we assume the caller wants to be able to collect
  98. // cpu and memory profiles via go tool pprof
  99. if !*v.pprof {
  100. grace.SetupProfiling(*v.cpuProfile, *v.memProfile)
  101. }
  102. go stats_collect.StartMetricsServer(*v.metricsHttpPort)
  103. v.startVolumeServer(*volumeFolders, *maxVolumeCounts, *volumeWhiteListOption, *minFreeSpacePercent)
  104. return true
  105. }
  106. func (v VolumeServerOptions) startVolumeServer(volumeFolders, maxVolumeCounts, volumeWhiteListOption, minFreeSpacePercent string) {
  107. // Set multiple folders and each folder's max volume count limit'
  108. v.folders = strings.Split(volumeFolders, ",")
  109. for _, folder := range v.folders {
  110. if err := util.TestFolderWritable(util.ResolvePath(folder)); err != nil {
  111. glog.Fatalf("Check Data Folder(-dir) Writable %s : %s", folder, err)
  112. }
  113. }
  114. // set max
  115. maxCountStrings := strings.Split(maxVolumeCounts, ",")
  116. for _, maxString := range maxCountStrings {
  117. if max, e := strconv.Atoi(maxString); e == nil {
  118. v.folderMaxLimits = append(v.folderMaxLimits, max)
  119. } else {
  120. glog.Fatalf("The max specified in -max not a valid number %s", maxString)
  121. }
  122. }
  123. if len(v.folderMaxLimits) == 1 && len(v.folders) > 1 {
  124. for i := 0; i < len(v.folders)-1; i++ {
  125. v.folderMaxLimits = append(v.folderMaxLimits, v.folderMaxLimits[0])
  126. }
  127. }
  128. if len(v.folders) != len(v.folderMaxLimits) {
  129. glog.Fatalf("%d directories by -dir, but only %d max is set by -max", len(v.folders), len(v.folderMaxLimits))
  130. }
  131. // set minFreeSpacePercent
  132. minFreeSpacePercentStrings := strings.Split(minFreeSpacePercent, ",")
  133. for _, freeString := range minFreeSpacePercentStrings {
  134. if value, e := strconv.ParseFloat(freeString, 32); e == nil {
  135. v.minFreeSpacePercents = append(v.minFreeSpacePercents, float32(value))
  136. } else {
  137. glog.Fatalf("The value specified in -minFreeSpacePercent not a valid value %s", freeString)
  138. }
  139. }
  140. if len(v.minFreeSpacePercents) == 1 && len(v.folders) > 1 {
  141. for i := 0; i < len(v.folders)-1; i++ {
  142. v.minFreeSpacePercents = append(v.minFreeSpacePercents, v.minFreeSpacePercents[0])
  143. }
  144. }
  145. if len(v.folders) != len(v.minFreeSpacePercents) {
  146. glog.Fatalf("%d directories by -dir, but only %d minFreeSpacePercent is set by -minFreeSpacePercent", len(v.folders), len(v.minFreeSpacePercents))
  147. }
  148. // security related white list configuration
  149. if volumeWhiteListOption != "" {
  150. v.whiteList = strings.Split(volumeWhiteListOption, ",")
  151. }
  152. if *v.ip == "" {
  153. *v.ip = util.DetectedHostAddress()
  154. glog.V(0).Infof("detected volume server ip address: %v", *v.ip)
  155. }
  156. if *v.publicPort == 0 {
  157. *v.publicPort = *v.port
  158. }
  159. if *v.publicUrl == "" {
  160. *v.publicUrl = *v.ip + ":" + strconv.Itoa(*v.publicPort)
  161. }
  162. volumeMux := http.NewServeMux()
  163. publicVolumeMux := volumeMux
  164. if v.isSeparatedPublicPort() {
  165. publicVolumeMux = http.NewServeMux()
  166. }
  167. if *v.pprof {
  168. volumeMux.HandleFunc("/debug/pprof/", httppprof.Index)
  169. volumeMux.HandleFunc("/debug/pprof/cmdline", httppprof.Cmdline)
  170. volumeMux.HandleFunc("/debug/pprof/profile", httppprof.Profile)
  171. volumeMux.HandleFunc("/debug/pprof/symbol", httppprof.Symbol)
  172. volumeMux.HandleFunc("/debug/pprof/trace", httppprof.Trace)
  173. }
  174. volumeNeedleMapKind := storage.NeedleMapInMemory
  175. switch *v.indexType {
  176. case "leveldb":
  177. volumeNeedleMapKind = storage.NeedleMapLevelDb
  178. case "leveldbMedium":
  179. volumeNeedleMapKind = storage.NeedleMapLevelDbMedium
  180. case "leveldbLarge":
  181. volumeNeedleMapKind = storage.NeedleMapLevelDbLarge
  182. }
  183. masters := *v.masters
  184. diskType, err := storage.ToDiskType(*v.diskType)
  185. if err != nil {
  186. glog.Fatalf("failed to parse volume type: %v", err)
  187. }
  188. volumeServer := weed_server.NewVolumeServer(volumeMux, publicVolumeMux,
  189. *v.ip, *v.port, *v.publicUrl,
  190. v.folders, v.folderMaxLimits, v.minFreeSpacePercents,
  191. *v.idxFolder, diskType,
  192. volumeNeedleMapKind,
  193. strings.Split(masters, ","), 5, *v.dataCenter, *v.rack,
  194. v.whiteList,
  195. *v.fixJpgOrientation, *v.readRedirect,
  196. *v.compactionMBPerSecond,
  197. *v.fileSizeLimitMB,
  198. )
  199. // starting grpc server
  200. grpcS := v.startGrpcService(volumeServer)
  201. // starting public http server
  202. var publicHttpDown httpdown.Server
  203. if v.isSeparatedPublicPort() {
  204. publicHttpDown = v.startPublicHttpService(publicVolumeMux)
  205. if nil == publicHttpDown {
  206. glog.Fatalf("start public http service failed")
  207. }
  208. }
  209. // starting the cluster http server
  210. clusterHttpServer := v.startClusterHttpService(volumeMux)
  211. stopChan := make(chan bool)
  212. grace.OnInterrupt(func() {
  213. fmt.Println("volume server has be killed")
  214. // Stop heartbeats
  215. if !volumeServer.StopHeartbeat() {
  216. glog.V(0).Infof("stop send heartbeat and wait %d seconds until shutdown ...", *v.preStopSeconds)
  217. time.Sleep(time.Duration(*v.preStopSeconds) * time.Second)
  218. }
  219. shutdown(publicHttpDown, clusterHttpServer, grpcS, volumeServer)
  220. stopChan <- true
  221. })
  222. select {
  223. case <-stopChan:
  224. }
  225. }
  226. func shutdown(publicHttpDown httpdown.Server, clusterHttpServer httpdown.Server, grpcS *grpc.Server, volumeServer *weed_server.VolumeServer) {
  227. // firstly, stop the public http service to prevent from receiving new user request
  228. if nil != publicHttpDown {
  229. glog.V(0).Infof("stop public http server ... ")
  230. if err := publicHttpDown.Stop(); err != nil {
  231. glog.Warningf("stop the public http server failed, %v", err)
  232. }
  233. }
  234. glog.V(0).Infof("graceful stop cluster http server ... ")
  235. if err := clusterHttpServer.Stop(); err != nil {
  236. glog.Warningf("stop the cluster http server failed, %v", err)
  237. }
  238. glog.V(0).Infof("graceful stop gRPC ...")
  239. grpcS.GracefulStop()
  240. volumeServer.Shutdown()
  241. pprof.StopCPUProfile()
  242. }
  243. // check whether configure the public port
  244. func (v VolumeServerOptions) isSeparatedPublicPort() bool {
  245. return *v.publicPort != *v.port
  246. }
  247. func (v VolumeServerOptions) startGrpcService(vs volume_server_pb.VolumeServerServer) *grpc.Server {
  248. grpcPort := *v.port + 10000
  249. grpcL, err := util.NewListener(*v.bindIp+":"+strconv.Itoa(grpcPort), 0)
  250. if err != nil {
  251. glog.Fatalf("failed to listen on grpc port %d: %v", grpcPort, err)
  252. }
  253. grpcS := pb.NewGrpcServer(security.LoadServerTLS(util.GetViper(), "grpc.volume"))
  254. volume_server_pb.RegisterVolumeServerServer(grpcS, vs)
  255. reflection.Register(grpcS)
  256. go func() {
  257. if err := grpcS.Serve(grpcL); err != nil {
  258. glog.Fatalf("start gRPC service failed, %s", err)
  259. }
  260. }()
  261. return grpcS
  262. }
  263. func (v VolumeServerOptions) startPublicHttpService(handler http.Handler) httpdown.Server {
  264. publicListeningAddress := *v.bindIp + ":" + strconv.Itoa(*v.publicPort)
  265. glog.V(0).Infoln("Start Seaweed volume server", util.Version(), "public at", publicListeningAddress)
  266. publicListener, e := util.NewListener(publicListeningAddress, time.Duration(*v.idleConnectionTimeout)*time.Second)
  267. if e != nil {
  268. glog.Fatalf("Volume server listener error:%v", e)
  269. }
  270. pubHttp := httpdown.HTTP{StopTimeout: 5 * time.Minute, KillTimeout: 5 * time.Minute}
  271. publicHttpDown := pubHttp.Serve(&http.Server{Handler: handler}, publicListener)
  272. go func() {
  273. if err := publicHttpDown.Wait(); err != nil {
  274. glog.Errorf("public http down wait failed, %v", err)
  275. }
  276. }()
  277. return publicHttpDown
  278. }
  279. func (v VolumeServerOptions) startClusterHttpService(handler http.Handler) httpdown.Server {
  280. var (
  281. certFile, keyFile string
  282. )
  283. if viper.GetString("https.volume.key") != "" {
  284. certFile = viper.GetString("https.volume.cert")
  285. keyFile = viper.GetString("https.volume.key")
  286. }
  287. listeningAddress := *v.bindIp + ":" + strconv.Itoa(*v.port)
  288. glog.V(0).Infof("Start Seaweed volume server %s at %s", util.Version(), listeningAddress)
  289. listener, e := util.NewListener(listeningAddress, time.Duration(*v.idleConnectionTimeout)*time.Second)
  290. if e != nil {
  291. glog.Fatalf("Volume server listener error:%v", e)
  292. }
  293. httpDown := httpdown.HTTP{
  294. KillTimeout: 5 * time.Minute,
  295. StopTimeout: 5 * time.Minute,
  296. CertFile: certFile,
  297. KeyFile: keyFile}
  298. clusterHttpServer := httpDown.Serve(&http.Server{Handler: handler}, listener)
  299. go func() {
  300. if e := clusterHttpServer.Wait(); e != nil {
  301. glog.Fatalf("Volume server fail to serve: %v", e)
  302. }
  303. }()
  304. return clusterHttpServer
  305. }