server.go 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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. filerOptions.collection = cmdServer.Flag.String("filer.collection", "", "all data will be stored in this collection")
  86. filerOptions.port = cmdServer.Flag.Int("filer.port", 8888, "filer server http listen port")
  87. filerOptions.portGrpc = cmdServer.Flag.Int("filer.port.grpc", 0, "filer server grpc listen port")
  88. filerOptions.publicPort = cmdServer.Flag.Int("filer.port.public", 0, "filer server public http listen port")
  89. filerOptions.defaultReplicaPlacement = cmdServer.Flag.String("filer.defaultReplicaPlacement", "", "default replication type. If not specified, use master setting.")
  90. filerOptions.disableDirListing = cmdServer.Flag.Bool("filer.disableDirListing", false, "turn off directory listing")
  91. filerOptions.maxMB = cmdServer.Flag.Int("filer.maxMB", 4, "split files larger than the limit")
  92. filerOptions.dirListingLimit = cmdServer.Flag.Int("filer.dirListLimit", 1000, "limit sub dir listing size")
  93. filerOptions.cipher = cmdServer.Flag.Bool("filer.encryptVolumeData", false, "encrypt data on volume servers")
  94. filerOptions.saveToFilerLimit = cmdServer.Flag.Int("filer.saveToFilerLimit", 0, "Small files smaller than this limit can be cached in filer store.")
  95. filerOptions.concurrentUploadLimitMB = cmdServer.Flag.Int("filer.concurrentUploadLimitMB", 64, "limit total concurrent upload size")
  96. serverOptions.v.port = cmdServer.Flag.Int("volume.port", 8080, "volume server http listen port")
  97. serverOptions.v.portGrpc = cmdServer.Flag.Int("volume.port.grpc", 0, "volume server grpc listen port")
  98. serverOptions.v.publicPort = cmdServer.Flag.Int("volume.port.public", 0, "volume server public port")
  99. serverOptions.v.indexType = cmdServer.Flag.String("volume.index", "memory", "Choose [memory|leveldb|leveldbMedium|leveldbLarge] mode for memory~performance balance.")
  100. serverOptions.v.diskType = cmdServer.Flag.String("volume.disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag")
  101. serverOptions.v.fixJpgOrientation = cmdServer.Flag.Bool("volume.images.fix.orientation", false, "Adjust jpg orientation when uploading.")
  102. 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'.")
  103. serverOptions.v.compactionMBPerSecond = cmdServer.Flag.Int("volume.compactionMBps", 0, "limit compaction speed in mega bytes per second")
  104. serverOptions.v.fileSizeLimitMB = cmdServer.Flag.Int("volume.fileSizeLimitMB", 256, "limit file size to avoid out of memory")
  105. serverOptions.v.concurrentUploadLimitMB = cmdServer.Flag.Int("volume.concurrentUploadLimitMB", 64, "limit total concurrent upload size")
  106. serverOptions.v.concurrentDownloadLimitMB = cmdServer.Flag.Int("volume.concurrentDownloadLimitMB", 64, "limit total concurrent download size")
  107. serverOptions.v.publicUrl = cmdServer.Flag.String("volume.publicUrl", "", "publicly accessible address")
  108. serverOptions.v.preStopSeconds = cmdServer.Flag.Int("volume.preStopSeconds", 10, "number of seconds between stop send heartbeats and stop volume server")
  109. serverOptions.v.pprof = cmdServer.Flag.Bool("volume.pprof", false, "enable pprof http handlers. precludes --memprofile and --cpuprofile")
  110. serverOptions.v.idxFolder = cmdServer.Flag.String("volume.dir.idx", "", "directory to store .idx files")
  111. serverOptions.v.enableTcp = cmdServer.Flag.Bool("volume.tcp", false, "<exprimental> enable tcp port")
  112. s3Options.port = cmdServer.Flag.Int("s3.port", 8333, "s3 server http listen port")
  113. s3Options.domainName = cmdServer.Flag.String("s3.domainName", "", "suffix of the host name in comma separated list, {bucket}.{domainName}")
  114. s3Options.tlsPrivateKey = cmdServer.Flag.String("s3.key.file", "", "path to the TLS private key file")
  115. s3Options.tlsCertificate = cmdServer.Flag.String("s3.cert.file", "", "path to the TLS certificate file")
  116. s3Options.config = cmdServer.Flag.String("s3.config", "", "path to the config file")
  117. s3Options.auditLogConfig = cmdServer.Flag.String("s3.auditLogConfig", "", "path to the audit log config file")
  118. s3Options.allowEmptyFolder = cmdServer.Flag.Bool("s3.allowEmptyFolder", true, "allow empty folders")
  119. iamOptions.port = cmdServer.Flag.Int("iam.port", 8111, "iam server http listen port")
  120. webdavOptions.port = cmdServer.Flag.Int("webdav.port", 7333, "webdav server http listen port")
  121. webdavOptions.collection = cmdServer.Flag.String("webdav.collection", "", "collection to create the files")
  122. webdavOptions.replication = cmdServer.Flag.String("webdav.replication", "", "replication to create the files")
  123. webdavOptions.disk = cmdServer.Flag.String("webdav.disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag")
  124. webdavOptions.tlsPrivateKey = cmdServer.Flag.String("webdav.key.file", "", "path to the TLS private key file")
  125. webdavOptions.tlsCertificate = cmdServer.Flag.String("webdav.cert.file", "", "path to the TLS certificate file")
  126. webdavOptions.cacheDir = cmdServer.Flag.String("webdav.cacheDir", os.TempDir(), "local cache directory for file chunks")
  127. webdavOptions.cacheSizeMB = cmdServer.Flag.Int64("webdav.cacheCapacityMB", 1000, "local cache capacity in MB")
  128. msgBrokerOptions.port = cmdServer.Flag.Int("msgBroker.port", 17777, "broker gRPC listen port")
  129. }
  130. func runServer(cmd *Command, args []string) bool {
  131. if *serverOptions.debug {
  132. go http.ListenAndServe(fmt.Sprintf(":%d", *serverOptions.debugPort), nil)
  133. }
  134. util.LoadConfiguration("security", false)
  135. util.LoadConfiguration("master", false)
  136. grace.SetupProfiling(*serverOptions.cpuprofile, *serverOptions.memprofile)
  137. if *isStartingS3 {
  138. *isStartingFiler = true
  139. }
  140. if *isStartingIam {
  141. *isStartingFiler = true
  142. }
  143. if *isStartingWebDav {
  144. *isStartingFiler = true
  145. }
  146. if *isStartingMsgBroker {
  147. *isStartingFiler = true
  148. }
  149. if *isStartingMasterServer {
  150. _, peerList := checkPeers(*serverIp, *masterOptions.port, *masterOptions.portGrpc, *masterOptions.peers)
  151. peers := strings.Join(pb.ToAddressStrings(peerList), ",")
  152. masterOptions.peers = &peers
  153. }
  154. // ip address
  155. masterOptions.ip = serverIp
  156. masterOptions.ipBind = serverBindIp
  157. filerOptions.masters = pb.ServerAddresses(*masterOptions.peers).ToAddresses()
  158. filerOptions.ip = serverIp
  159. filerOptions.bindIp = serverBindIp
  160. s3Options.bindIp = serverBindIp
  161. serverOptions.v.ip = serverIp
  162. serverOptions.v.bindIp = serverBindIp
  163. serverOptions.v.masters = pb.ServerAddresses(*masterOptions.peers).ToAddresses()
  164. serverOptions.v.idleConnectionTimeout = serverTimeout
  165. serverOptions.v.dataCenter = serverDataCenter
  166. serverOptions.v.rack = serverRack
  167. msgBrokerOptions.ip = serverIp
  168. // serverOptions.v.pulseSeconds = pulseSeconds
  169. // masterOptions.pulseSeconds = pulseSeconds
  170. masterOptions.whiteList = serverWhiteListOption
  171. filerOptions.dataCenter = serverDataCenter
  172. filerOptions.rack = serverRack
  173. filerOptions.disableHttp = serverDisableHttp
  174. masterOptions.disableHttp = serverDisableHttp
  175. filerAddress := string(pb.NewServerAddress(*serverIp, *filerOptions.port, *filerOptions.portGrpc))
  176. s3Options.filer = &filerAddress
  177. iamOptions.filer = &filerAddress
  178. webdavOptions.filer = &filerAddress
  179. msgBrokerOptions.filer = &filerAddress
  180. go stats_collect.StartMetricsServer(*serverMetricsHttpPort)
  181. folders := strings.Split(*volumeDataFolders, ",")
  182. if *masterOptions.volumeSizeLimitMB > util.VolumeSizeLimitGB*1000 {
  183. glog.Fatalf("masterVolumeSizeLimitMB should be less than 30000")
  184. }
  185. if *masterOptions.metaFolder == "" {
  186. *masterOptions.metaFolder = folders[0]
  187. }
  188. if err := util.TestFolderWritable(util.ResolvePath(*masterOptions.metaFolder)); err != nil {
  189. glog.Fatalf("Check Meta Folder (-mdir=\"%s\") Writable: %s", *masterOptions.metaFolder, err)
  190. }
  191. filerOptions.defaultLevelDbDirectory = masterOptions.metaFolder
  192. if *serverWhiteListOption != "" {
  193. serverWhiteList = strings.Split(*serverWhiteListOption, ",")
  194. }
  195. if *isStartingFiler {
  196. go func() {
  197. time.Sleep(1 * time.Second)
  198. filerOptions.startFiler()
  199. }()
  200. }
  201. if *isStartingS3 {
  202. go func() {
  203. time.Sleep(2 * time.Second)
  204. s3Options.startS3Server()
  205. }()
  206. }
  207. if *isStartingIam {
  208. go func() {
  209. time.Sleep(2 * time.Second)
  210. iamOptions.startIamServer()
  211. }()
  212. }
  213. if *isStartingWebDav {
  214. go func() {
  215. time.Sleep(2 * time.Second)
  216. webdavOptions.startWebDav()
  217. }()
  218. }
  219. if *isStartingMsgBroker {
  220. go func() {
  221. time.Sleep(2 * time.Second)
  222. msgBrokerOptions.startQueueServer()
  223. }()
  224. }
  225. // start volume server
  226. if *isStartingVolumeServer {
  227. minFreeSpaces := util.MustParseMinFreeSpace(*volumeMinFreeSpace, *volumeMinFreeSpacePercent)
  228. go serverOptions.v.startVolumeServer(*volumeDataFolders, *volumeMaxDataVolumeCounts, *serverWhiteListOption, minFreeSpaces)
  229. }
  230. if *isStartingMasterServer {
  231. go startMaster(masterOptions, serverWhiteList)
  232. }
  233. select {}
  234. }