server.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. package command
  2. import (
  3. "fmt"
  4. "os"
  5. "runtime"
  6. "runtime/pprof"
  7. "strings"
  8. "time"
  9. stats_collect "github.com/chrislusf/seaweedfs/weed/stats"
  10. "github.com/chrislusf/seaweedfs/weed/glog"
  11. "github.com/chrislusf/seaweedfs/weed/util"
  12. )
  13. type ServerOptions struct {
  14. cpuprofile *string
  15. v VolumeServerOptions
  16. }
  17. var (
  18. serverOptions ServerOptions
  19. masterOptions MasterOptions
  20. filerOptions FilerOptions
  21. s3Options S3Options
  22. webdavOptions WebDavOption
  23. msgBrokerOptions MessageBrokerOptions
  24. )
  25. func init() {
  26. cmdServer.Run = runServer // break init cycle
  27. }
  28. var cmdServer = &Command{
  29. UsageLine: "server -dir=/tmp -volume.max=5 -ip=server_name",
  30. Short: "start a master server, a volume server, and optionally a filer and a S3 gateway",
  31. Long: `start both a volume server to provide storage spaces
  32. and a master server to provide volume=>location mapping service and sequence number of file ids
  33. This is provided as a convenient way to start both volume server and master server.
  34. The servers acts exactly the same as starting them separately.
  35. So other volume servers can connect to this master server also.
  36. Optionally, a filer server can be started.
  37. Also optionally, a S3 gateway can be started.
  38. `,
  39. }
  40. var (
  41. serverIp = cmdServer.Flag.String("ip", util.DetectedHostAddress(), "ip or server name")
  42. serverBindIp = cmdServer.Flag.String("ip.bind", "", "ip address to bind to")
  43. serverTimeout = cmdServer.Flag.Int("idleTimeout", 30, "connection idle seconds")
  44. serverDataCenter = cmdServer.Flag.String("dataCenter", "", "current volume server's data center name")
  45. serverRack = cmdServer.Flag.String("rack", "", "current volume server's rack name")
  46. serverWhiteListOption = cmdServer.Flag.String("whiteList", "", "comma separated Ip addresses having write permission. No limit if empty.")
  47. serverDisableHttp = cmdServer.Flag.Bool("disableHttp", false, "disable http requests, only gRPC operations are allowed.")
  48. volumeDataFolders = cmdServer.Flag.String("dir", os.TempDir(), "directories to store data files. dir[,dir]...")
  49. volumeMaxDataVolumeCounts = cmdServer.Flag.String("volume.max", "8", "maximum numbers of volumes, count[,count]... If set to zero, the limit will be auto configured.")
  50. volumeMinFreeSpacePercent = cmdServer.Flag.String("volume.minFreeSpacePercent", "1", "minimum free disk space (default to 1%). Low disk space will mark all volumes as ReadOnly.")
  51. serverMetricsHttpPort = cmdServer.Flag.Int("metricsPort", 0, "Prometheus metrics listen port")
  52. // pulseSeconds = cmdServer.Flag.Int("pulseSeconds", 5, "number of seconds between heartbeats")
  53. isStartingMasterServer = cmdServer.Flag.Bool("master", true, "whether to start master server")
  54. isStartingVolumeServer = cmdServer.Flag.Bool("volume", true, "whether to start volume server")
  55. isStartingFiler = cmdServer.Flag.Bool("filer", false, "whether to start filer")
  56. isStartingS3 = cmdServer.Flag.Bool("s3", false, "whether to start S3 gateway")
  57. isStartingWebDav = cmdServer.Flag.Bool("webdav", false, "whether to start WebDAV gateway")
  58. isStartingMsgBroker = cmdServer.Flag.Bool("msgBroker", false, "whether to start message broker")
  59. serverWhiteList []string
  60. False = false
  61. )
  62. func init() {
  63. serverOptions.cpuprofile = cmdServer.Flag.String("cpuprofile", "", "cpu profile output file")
  64. masterOptions.port = cmdServer.Flag.Int("master.port", 9333, "master server http listen port")
  65. masterOptions.metaFolder = cmdServer.Flag.String("master.dir", "", "data directory to store meta data, default to same as -dir specified")
  66. masterOptions.peers = cmdServer.Flag.String("master.peers", "", "all master nodes in comma separated ip:masterPort list")
  67. masterOptions.volumeSizeLimitMB = cmdServer.Flag.Uint("master.volumeSizeLimitMB", 30*1000, "Master stops directing writes to oversized volumes.")
  68. masterOptions.volumePreallocate = cmdServer.Flag.Bool("master.volumePreallocate", false, "Preallocate disk space for volumes.")
  69. masterOptions.defaultReplication = cmdServer.Flag.String("master.defaultReplication", "000", "Default replication type if not specified.")
  70. masterOptions.garbageThreshold = cmdServer.Flag.Float64("garbageThreshold", 0.3, "threshold to vacuum and reclaim spaces")
  71. masterOptions.metricsAddress = cmdServer.Flag.String("metrics.address", "", "Prometheus gateway address")
  72. masterOptions.metricsIntervalSec = cmdServer.Flag.Int("metrics.intervalSeconds", 15, "Prometheus push interval in seconds")
  73. masterOptions.raftResumeState = cmdServer.Flag.Bool("resumeState", false, "resume previous state on start master server")
  74. filerOptions.collection = cmdServer.Flag.String("filer.collection", "", "all data will be stored in this collection")
  75. filerOptions.port = cmdServer.Flag.Int("filer.port", 8888, "filer server http listen port")
  76. filerOptions.publicPort = cmdServer.Flag.Int("filer.port.public", 0, "filer server public http listen port")
  77. filerOptions.defaultReplicaPlacement = cmdServer.Flag.String("filer.defaultReplicaPlacement", "", "default replication type. If not specified, use master setting.")
  78. filerOptions.disableDirListing = cmdServer.Flag.Bool("filer.disableDirListing", false, "turn off directory listing")
  79. filerOptions.maxMB = cmdServer.Flag.Int("filer.maxMB", 32, "split files larger than the limit")
  80. filerOptions.dirListingLimit = cmdServer.Flag.Int("filer.dirListLimit", 1000, "limit sub dir listing size")
  81. filerOptions.cipher = cmdServer.Flag.Bool("filer.encryptVolumeData", false, "encrypt data on volume servers")
  82. filerOptions.peers = cmdServer.Flag.String("filer.peers", "", "all filers sharing the same filer store in comma separated ip:port list")
  83. filerOptions.saveToFilerLimit = cmdServer.Flag.Int("filer.saveToFilerLimit", 0, "Small files smaller than this limit can be cached in filer store.")
  84. serverOptions.v.port = cmdServer.Flag.Int("volume.port", 8080, "volume server http listen port")
  85. serverOptions.v.publicPort = cmdServer.Flag.Int("volume.port.public", 0, "volume server public port")
  86. serverOptions.v.indexType = cmdServer.Flag.String("volume.index", "memory", "Choose [memory|leveldb|leveldbMedium|leveldbLarge] mode for memory~performance balance.")
  87. serverOptions.v.diskType = cmdServer.Flag.String("volume.disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag")
  88. serverOptions.v.fixJpgOrientation = cmdServer.Flag.Bool("volume.images.fix.orientation", false, "Adjust jpg orientation when uploading.")
  89. serverOptions.v.readRedirect = cmdServer.Flag.Bool("volume.read.redirect", true, "Redirect moved or non-local volumes.")
  90. serverOptions.v.compactionMBPerSecond = cmdServer.Flag.Int("volume.compactionMBps", 0, "limit compaction speed in mega bytes per second")
  91. serverOptions.v.fileSizeLimitMB = cmdServer.Flag.Int("volume.fileSizeLimitMB", 256, "limit file size to avoid out of memory")
  92. serverOptions.v.publicUrl = cmdServer.Flag.String("volume.publicUrl", "", "publicly accessible address")
  93. serverOptions.v.preStopSeconds = cmdServer.Flag.Int("volume.preStopSeconds", 10, "number of seconds between stop send heartbeats and stop volume server")
  94. serverOptions.v.pprof = cmdServer.Flag.Bool("volume.pprof", false, "enable pprof http handlers. precludes --memprofile and --cpuprofile")
  95. serverOptions.v.idxFolder = cmdServer.Flag.String("volume.dir.idx", "", "directory to store .idx files")
  96. serverOptions.v.enableTcp = cmdServer.Flag.Bool("volume.tcp", false, "<exprimental> enable tcp port")
  97. s3Options.port = cmdServer.Flag.Int("s3.port", 8333, "s3 server http listen port")
  98. s3Options.domainName = cmdServer.Flag.String("s3.domainName", "", "suffix of the host name in comma separated list, {bucket}.{domainName}")
  99. s3Options.tlsPrivateKey = cmdServer.Flag.String("s3.key.file", "", "path to the TLS private key file")
  100. s3Options.tlsCertificate = cmdServer.Flag.String("s3.cert.file", "", "path to the TLS certificate file")
  101. s3Options.config = cmdServer.Flag.String("s3.config", "", "path to the config file")
  102. s3Options.allowEmptyFolder = cmdServer.Flag.Bool("s3.allowEmptyFolder", false, "allow empty folders")
  103. webdavOptions.port = cmdServer.Flag.Int("webdav.port", 7333, "webdav server http listen port")
  104. webdavOptions.collection = cmdServer.Flag.String("webdav.collection", "", "collection to create the files")
  105. webdavOptions.replication = cmdServer.Flag.String("webdav.replication", "", "replication to create the files")
  106. webdavOptions.disk = cmdServer.Flag.String("webdav.disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag")
  107. webdavOptions.tlsPrivateKey = cmdServer.Flag.String("webdav.key.file", "", "path to the TLS private key file")
  108. webdavOptions.tlsCertificate = cmdServer.Flag.String("webdav.cert.file", "", "path to the TLS certificate file")
  109. webdavOptions.cacheDir = cmdServer.Flag.String("webdav.cacheDir", os.TempDir(), "local cache directory for file chunks")
  110. webdavOptions.cacheSizeMB = cmdServer.Flag.Int64("webdav.cacheCapacityMB", 1000, "local cache capacity in MB")
  111. msgBrokerOptions.port = cmdServer.Flag.Int("msgBroker.port", 17777, "broker gRPC listen port")
  112. }
  113. func runServer(cmd *Command, args []string) bool {
  114. util.LoadConfiguration("security", false)
  115. util.LoadConfiguration("master", false)
  116. if *serverOptions.cpuprofile != "" {
  117. f, err := os.Create(*serverOptions.cpuprofile)
  118. if err != nil {
  119. glog.Fatal(err)
  120. }
  121. pprof.StartCPUProfile(f)
  122. defer pprof.StopCPUProfile()
  123. }
  124. if *isStartingS3 {
  125. *isStartingFiler = true
  126. }
  127. if *isStartingWebDav {
  128. *isStartingFiler = true
  129. }
  130. if *isStartingMsgBroker {
  131. *isStartingFiler = true
  132. }
  133. if *isStartingMasterServer {
  134. _, peerList := checkPeers(*serverIp, *masterOptions.port, *masterOptions.peers)
  135. peers := strings.Join(peerList, ",")
  136. masterOptions.peers = &peers
  137. }
  138. // ip address
  139. masterOptions.ip = serverIp
  140. masterOptions.ipBind = serverBindIp
  141. filerOptions.masters = masterOptions.peers
  142. filerOptions.ip = serverIp
  143. filerOptions.bindIp = serverBindIp
  144. serverOptions.v.ip = serverIp
  145. serverOptions.v.bindIp = serverBindIp
  146. serverOptions.v.masters = masterOptions.peers
  147. serverOptions.v.idleConnectionTimeout = serverTimeout
  148. serverOptions.v.dataCenter = serverDataCenter
  149. serverOptions.v.rack = serverRack
  150. msgBrokerOptions.ip = serverIp
  151. // serverOptions.v.pulseSeconds = pulseSeconds
  152. // masterOptions.pulseSeconds = pulseSeconds
  153. masterOptions.whiteList = serverWhiteListOption
  154. filerOptions.dataCenter = serverDataCenter
  155. filerOptions.rack = serverRack
  156. filerOptions.disableHttp = serverDisableHttp
  157. masterOptions.disableHttp = serverDisableHttp
  158. filerAddress := fmt.Sprintf("%s:%d", *serverIp, *filerOptions.port)
  159. s3Options.filer = &filerAddress
  160. webdavOptions.filer = &filerAddress
  161. msgBrokerOptions.filer = &filerAddress
  162. runtime.GOMAXPROCS(runtime.NumCPU())
  163. go stats_collect.StartMetricsServer(*serverMetricsHttpPort)
  164. folders := strings.Split(*volumeDataFolders, ",")
  165. if *masterOptions.volumeSizeLimitMB > util.VolumeSizeLimitGB*1000 {
  166. glog.Fatalf("masterVolumeSizeLimitMB should be less than 30000")
  167. }
  168. if *masterOptions.metaFolder == "" {
  169. *masterOptions.metaFolder = folders[0]
  170. }
  171. if err := util.TestFolderWritable(util.ResolvePath(*masterOptions.metaFolder)); err != nil {
  172. glog.Fatalf("Check Meta Folder (-mdir=\"%s\") Writable: %s", *masterOptions.metaFolder, err)
  173. }
  174. filerOptions.defaultLevelDbDirectory = masterOptions.metaFolder
  175. if *serverWhiteListOption != "" {
  176. serverWhiteList = strings.Split(*serverWhiteListOption, ",")
  177. }
  178. if *isStartingFiler {
  179. go func() {
  180. time.Sleep(1 * time.Second)
  181. filerOptions.startFiler()
  182. }()
  183. }
  184. if *isStartingS3 {
  185. go func() {
  186. time.Sleep(2 * time.Second)
  187. s3Options.startS3Server()
  188. }()
  189. }
  190. if *isStartingWebDav {
  191. go func() {
  192. time.Sleep(2 * time.Second)
  193. webdavOptions.startWebDav()
  194. }()
  195. }
  196. if *isStartingMsgBroker {
  197. go func() {
  198. time.Sleep(2 * time.Second)
  199. msgBrokerOptions.startQueueServer()
  200. }()
  201. }
  202. // start volume server
  203. if *isStartingVolumeServer {
  204. go serverOptions.v.startVolumeServer(*volumeDataFolders, *volumeMaxDataVolumeCounts, *serverWhiteListOption, *volumeMinFreeSpacePercent)
  205. }
  206. if *isStartingMasterServer {
  207. go startMaster(masterOptions, serverWhiteList)
  208. }
  209. select {}
  210. return true
  211. }