server.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. package command
  2. import (
  3. "fmt"
  4. "net/http"
  5. "os"
  6. "strings"
  7. "time"
  8. stats_collect "github.com/seaweedfs/seaweedfs/weed/stats"
  9. "github.com/seaweedfs/seaweedfs/weed/glog"
  10. "github.com/seaweedfs/seaweedfs/weed/pb"
  11. "github.com/seaweedfs/seaweedfs/weed/util"
  12. "github.com/seaweedfs/seaweedfs/weed/util/grace"
  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. mqBrokerOptions MessageQueueBrokerOptions
  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. If empty, default to same as -ip option.")
  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. isStartingMqBroker = cmdServer.Flag.Bool("mq.broker", false, "whether to start message queue broker")
  66. False = false
  67. )
  68. func init() {
  69. serverOptions.cpuprofile = cmdServer.Flag.String("cpuprofile", "", "cpu profile output file")
  70. serverOptions.memprofile = cmdServer.Flag.String("memprofile", "", "memory profile output file")
  71. serverOptions.debug = cmdServer.Flag.Bool("debug", false, "serves runtime profiling data, e.g., http://localhost:6060/debug/pprof/goroutine?debug=2")
  72. serverOptions.debugPort = cmdServer.Flag.Int("debug.port", 6060, "http port for debugging")
  73. masterOptions.port = cmdServer.Flag.Int("master.port", 9333, "master server http listen port")
  74. masterOptions.portGrpc = cmdServer.Flag.Int("master.port.grpc", 0, "master server grpc listen port")
  75. masterOptions.metaFolder = cmdServer.Flag.String("master.dir", "", "data directory to store meta data, default to same as -dir specified")
  76. masterOptions.peers = cmdServer.Flag.String("master.peers", "", "all master nodes in comma separated ip:masterPort list")
  77. masterOptions.volumeSizeLimitMB = cmdServer.Flag.Uint("master.volumeSizeLimitMB", 30*1000, "Master stops directing writes to oversized volumes.")
  78. masterOptions.volumePreallocate = cmdServer.Flag.Bool("master.volumePreallocate", false, "Preallocate disk space for volumes.")
  79. masterOptions.defaultReplication = cmdServer.Flag.String("master.defaultReplication", "", "Default replication type if not specified.")
  80. masterOptions.garbageThreshold = cmdServer.Flag.Float64("master.garbageThreshold", 0.3, "threshold to vacuum and reclaim spaces")
  81. masterOptions.metricsAddress = cmdServer.Flag.String("master.metrics.address", "", "Prometheus gateway address")
  82. masterOptions.metricsIntervalSec = cmdServer.Flag.Int("master.metrics.intervalSeconds", 15, "Prometheus push interval in seconds")
  83. masterOptions.raftResumeState = cmdServer.Flag.Bool("master.resumeState", false, "resume previous state on start master server")
  84. masterOptions.raftHashicorp = cmdServer.Flag.Bool("master.raftHashicorp", false, "use hashicorp raft")
  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.filerGroup = cmdServer.Flag.String("filer.filerGroup", "", "share metadata with other filers in the same filerGroup")
  88. filerOptions.collection = cmdServer.Flag.String("filer.collection", "", "all data will be stored in this collection")
  89. filerOptions.port = cmdServer.Flag.Int("filer.port", 8888, "filer server http listen port")
  90. filerOptions.portGrpc = cmdServer.Flag.Int("filer.port.grpc", 0, "filer server grpc listen port")
  91. filerOptions.publicPort = cmdServer.Flag.Int("filer.port.public", 0, "filer server public http listen port")
  92. filerOptions.defaultReplicaPlacement = cmdServer.Flag.String("filer.defaultReplicaPlacement", "", "default replication type. If not specified, use master setting.")
  93. filerOptions.disableDirListing = cmdServer.Flag.Bool("filer.disableDirListing", false, "turn off directory listing")
  94. filerOptions.maxMB = cmdServer.Flag.Int("filer.maxMB", 4, "split files larger than the limit")
  95. filerOptions.dirListingLimit = cmdServer.Flag.Int("filer.dirListLimit", 1000, "limit sub dir listing size")
  96. filerOptions.cipher = cmdServer.Flag.Bool("filer.encryptVolumeData", false, "encrypt data on volume servers")
  97. filerOptions.saveToFilerLimit = cmdServer.Flag.Int("filer.saveToFilerLimit", 0, "Small files smaller than this limit can be cached in filer store.")
  98. filerOptions.concurrentUploadLimitMB = cmdServer.Flag.Int("filer.concurrentUploadLimitMB", 64, "limit total concurrent upload size")
  99. filerOptions.localSocket = cmdServer.Flag.String("filer.localSocket", "", "default to /tmp/seaweedfs-filer-<port>.sock")
  100. filerOptions.showUIDirectoryDelete = cmdServer.Flag.Bool("filer.ui.deleteDir", true, "enable filer UI show delete directory button")
  101. filerOptions.downloadMaxMBps = cmdServer.Flag.Int("filer.downloadMaxMBps", 0, "download max speed for each download request, in MB per second")
  102. serverOptions.v.port = cmdServer.Flag.Int("volume.port", 8080, "volume server http listen port")
  103. serverOptions.v.portGrpc = cmdServer.Flag.Int("volume.port.grpc", 0, "volume server grpc listen port")
  104. serverOptions.v.publicPort = cmdServer.Flag.Int("volume.port.public", 0, "volume server public port")
  105. serverOptions.v.indexType = cmdServer.Flag.String("volume.index", "memory", "Choose [memory|leveldb|leveldbMedium|leveldbLarge] mode for memory~performance balance.")
  106. serverOptions.v.diskType = cmdServer.Flag.String("volume.disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag")
  107. serverOptions.v.fixJpgOrientation = cmdServer.Flag.Bool("volume.images.fix.orientation", false, "Adjust jpg orientation when uploading.")
  108. 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'.")
  109. serverOptions.v.compactionMBPerSecond = cmdServer.Flag.Int("volume.compactionMBps", 0, "limit compaction speed in mega bytes per second")
  110. serverOptions.v.fileSizeLimitMB = cmdServer.Flag.Int("volume.fileSizeLimitMB", 256, "limit file size to avoid out of memory")
  111. serverOptions.v.ldbTimeout = cmdServer.Flag.Int64("volume.index.leveldbTimeout", 0, "alive time for leveldb (default to 0). If leveldb of volume is not accessed in ldbTimeout hours, it will be off loaded to reduce opened files and memory consumption.")
  112. serverOptions.v.concurrentUploadLimitMB = cmdServer.Flag.Int("volume.concurrentUploadLimitMB", 64, "limit total concurrent upload size")
  113. serverOptions.v.concurrentDownloadLimitMB = cmdServer.Flag.Int("volume.concurrentDownloadLimitMB", 64, "limit total concurrent download size")
  114. serverOptions.v.publicUrl = cmdServer.Flag.String("volume.publicUrl", "", "publicly accessible address")
  115. serverOptions.v.preStopSeconds = cmdServer.Flag.Int("volume.preStopSeconds", 10, "number of seconds between stop send heartbeats and stop volume server")
  116. serverOptions.v.pprof = cmdServer.Flag.Bool("volume.pprof", false, "enable pprof http handlers. precludes --memprofile and --cpuprofile")
  117. serverOptions.v.idxFolder = cmdServer.Flag.String("volume.dir.idx", "", "directory to store .idx files")
  118. serverOptions.v.inflightUploadDataTimeout = cmdServer.Flag.Duration("volume.inflightUploadDataTimeout", 60*time.Second, "inflight upload data wait timeout of volume servers")
  119. serverOptions.v.hasSlowRead = cmdServer.Flag.Bool("volume.hasSlowRead", true, "<experimental> if true, this prevents slow reads from blocking other requests, but large file read P99 latency will increase.")
  120. serverOptions.v.readBufferSizeMB = cmdServer.Flag.Int("volume.readBufferSizeMB", 4, "<experimental> larger values can optimize query performance but will increase some memory usage,Use with hasSlowRead normally")
  121. s3Options.port = cmdServer.Flag.Int("s3.port", 8333, "s3 server http listen port")
  122. s3Options.portGrpc = cmdServer.Flag.Int("s3.port.grpc", 0, "s3 server grpc listen port")
  123. s3Options.domainName = cmdServer.Flag.String("s3.domainName", "", "suffix of the host name in comma separated list, {bucket}.{domainName}")
  124. s3Options.tlsPrivateKey = cmdServer.Flag.String("s3.key.file", "", "path to the TLS private key file")
  125. s3Options.tlsCertificate = cmdServer.Flag.String("s3.cert.file", "", "path to the TLS certificate file")
  126. s3Options.config = cmdServer.Flag.String("s3.config", "", "path to the config file")
  127. s3Options.auditLogConfig = cmdServer.Flag.String("s3.auditLogConfig", "", "path to the audit log config file")
  128. s3Options.allowEmptyFolder = cmdServer.Flag.Bool("s3.allowEmptyFolder", true, "allow empty folders")
  129. s3Options.allowDeleteBucketNotEmpty = cmdServer.Flag.Bool("s3.allowDeleteBucketNotEmpty", true, "allow recursive deleting all entries along with bucket")
  130. iamOptions.port = cmdServer.Flag.Int("iam.port", 8111, "iam server http listen port")
  131. webdavOptions.port = cmdServer.Flag.Int("webdav.port", 7333, "webdav server http listen port")
  132. webdavOptions.collection = cmdServer.Flag.String("webdav.collection", "", "collection to create the files")
  133. webdavOptions.replication = cmdServer.Flag.String("webdav.replication", "", "replication to create the files")
  134. webdavOptions.disk = cmdServer.Flag.String("webdav.disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag")
  135. webdavOptions.tlsPrivateKey = cmdServer.Flag.String("webdav.key.file", "", "path to the TLS private key file")
  136. webdavOptions.tlsCertificate = cmdServer.Flag.String("webdav.cert.file", "", "path to the TLS certificate file")
  137. webdavOptions.cacheDir = cmdServer.Flag.String("webdav.cacheDir", os.TempDir(), "local cache directory for file chunks")
  138. webdavOptions.cacheSizeMB = cmdServer.Flag.Int64("webdav.cacheCapacityMB", 0, "local cache capacity in MB")
  139. webdavOptions.filerRootPath = cmdServer.Flag.String("webdav.filer.path", "/", "use this remote path from filer server")
  140. mqBrokerOptions.port = cmdServer.Flag.Int("mq.broker.port", 17777, "message queue broker gRPC listen port")
  141. }
  142. func runServer(cmd *Command, args []string) bool {
  143. if *serverOptions.debug {
  144. go http.ListenAndServe(fmt.Sprintf(":%d", *serverOptions.debugPort), nil)
  145. }
  146. util.LoadConfiguration("security", false)
  147. util.LoadConfiguration("master", false)
  148. grace.SetupProfiling(*serverOptions.cpuprofile, *serverOptions.memprofile)
  149. if *isStartingS3 {
  150. *isStartingFiler = true
  151. }
  152. if *isStartingIam {
  153. *isStartingFiler = true
  154. }
  155. if *isStartingWebDav {
  156. *isStartingFiler = true
  157. }
  158. if *isStartingMqBroker {
  159. *isStartingFiler = true
  160. }
  161. if *isStartingMasterServer {
  162. _, peerList := checkPeers(*serverIp, *masterOptions.port, *masterOptions.portGrpc, *masterOptions.peers)
  163. peers := strings.Join(pb.ToAddressStrings(peerList), ",")
  164. masterOptions.peers = &peers
  165. }
  166. if *serverBindIp == "" {
  167. serverBindIp = serverIp
  168. }
  169. // ip address
  170. masterOptions.ip = serverIp
  171. masterOptions.ipBind = serverBindIp
  172. filerOptions.masters = pb.ServerAddresses(*masterOptions.peers).ToAddressMap()
  173. filerOptions.ip = serverIp
  174. filerOptions.bindIp = serverBindIp
  175. s3Options.bindIp = serverBindIp
  176. iamOptions.ip = serverBindIp
  177. iamOptions.masters = masterOptions.peers
  178. serverOptions.v.ip = serverIp
  179. serverOptions.v.bindIp = serverBindIp
  180. serverOptions.v.masters = pb.ServerAddresses(*masterOptions.peers).ToAddresses()
  181. serverOptions.v.idleConnectionTimeout = serverTimeout
  182. serverOptions.v.dataCenter = serverDataCenter
  183. serverOptions.v.rack = serverRack
  184. mqBrokerOptions.ip = serverIp
  185. mqBrokerOptions.masters = filerOptions.masters
  186. mqBrokerOptions.filerGroup = filerOptions.filerGroup
  187. // serverOptions.v.pulseSeconds = pulseSeconds
  188. // masterOptions.pulseSeconds = pulseSeconds
  189. masterOptions.whiteList = serverWhiteListOption
  190. filerOptions.dataCenter = serverDataCenter
  191. filerOptions.rack = serverRack
  192. mqBrokerOptions.dataCenter = serverDataCenter
  193. mqBrokerOptions.rack = serverRack
  194. s3Options.dataCenter = serverDataCenter
  195. filerOptions.disableHttp = serverDisableHttp
  196. masterOptions.disableHttp = serverDisableHttp
  197. filerAddress := string(pb.NewServerAddress(*serverIp, *filerOptions.port, *filerOptions.portGrpc))
  198. s3Options.filer = &filerAddress
  199. iamOptions.filer = &filerAddress
  200. webdavOptions.filer = &filerAddress
  201. mqBrokerOptions.filerGroup = filerOptions.filerGroup
  202. go stats_collect.StartMetricsServer(*serverBindIp, *serverMetricsHttpPort)
  203. folders := strings.Split(*volumeDataFolders, ",")
  204. if *masterOptions.volumeSizeLimitMB > util.VolumeSizeLimitGB*1000 {
  205. glog.Fatalf("masterVolumeSizeLimitMB should be less than 30000")
  206. }
  207. if *masterOptions.metaFolder == "" {
  208. *masterOptions.metaFolder = folders[0]
  209. }
  210. if err := util.TestFolderWritable(util.ResolvePath(*masterOptions.metaFolder)); err != nil {
  211. glog.Fatalf("Check Meta Folder (-mdir=\"%s\") Writable: %s", *masterOptions.metaFolder, err)
  212. }
  213. filerOptions.defaultLevelDbDirectory = masterOptions.metaFolder
  214. serverWhiteList := util.StringSplit(*serverWhiteListOption, ",")
  215. if *isStartingFiler {
  216. go func() {
  217. time.Sleep(1 * time.Second)
  218. filerOptions.startFiler()
  219. }()
  220. }
  221. if *isStartingS3 {
  222. go func() {
  223. time.Sleep(2 * time.Second)
  224. s3Options.localFilerSocket = filerOptions.localSocket
  225. s3Options.startS3Server()
  226. }()
  227. }
  228. if *isStartingIam {
  229. go func() {
  230. time.Sleep(2 * time.Second)
  231. iamOptions.startIamServer()
  232. }()
  233. }
  234. if *isStartingWebDav {
  235. go func() {
  236. time.Sleep(2 * time.Second)
  237. webdavOptions.startWebDav()
  238. }()
  239. }
  240. if *isStartingMqBroker {
  241. go func() {
  242. time.Sleep(2 * time.Second)
  243. mqBrokerOptions.startQueueServer()
  244. }()
  245. }
  246. // start volume server
  247. if *isStartingVolumeServer {
  248. minFreeSpaces := util.MustParseMinFreeSpace(*volumeMinFreeSpace, *volumeMinFreeSpacePercent)
  249. go serverOptions.v.startVolumeServer(*volumeDataFolders, *volumeMaxDataVolumeCounts, *serverWhiteListOption, minFreeSpaces)
  250. }
  251. if *isStartingMasterServer {
  252. go startMaster(masterOptions, serverWhiteList)
  253. }
  254. select {}
  255. }