server.go 14 KB

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