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.

108 lines
3.5 KiB

6 years ago
6 years ago
5 years ago
5 years ago
6 years ago
  1. package weed_server
  2. import (
  3. "fmt"
  4. "net/http"
  5. "google.golang.org/grpc"
  6. "github.com/chrislusf/seaweedfs/weed/stats"
  7. "github.com/chrislusf/seaweedfs/weed/util"
  8. "github.com/chrislusf/seaweedfs/weed/glog"
  9. "github.com/chrislusf/seaweedfs/weed/security"
  10. "github.com/chrislusf/seaweedfs/weed/storage"
  11. )
  12. type VolumeServer struct {
  13. SeedMasterNodes []string
  14. currentMaster string
  15. pulseSeconds int
  16. dataCenter string
  17. rack string
  18. store *storage.Store
  19. guard *security.Guard
  20. grpcDialOption grpc.DialOption
  21. needleMapKind storage.NeedleMapType
  22. FixJpgOrientation bool
  23. ReadRedirect bool
  24. compactionBytePerSecond int64
  25. MetricsAddress string
  26. MetricsIntervalSec int
  27. fileSizeLimitBytes int64
  28. SendHeartbeat bool
  29. }
  30. func NewVolumeServer(adminMux, publicMux *http.ServeMux, ip string,
  31. port int, publicUrl string,
  32. folders []string, maxCounts []int, minFreeSpacePercents []float32,
  33. needleMapKind storage.NeedleMapType,
  34. masterNodes []string, pulseSeconds int,
  35. dataCenter string, rack string,
  36. whiteList []string,
  37. fixJpgOrientation bool,
  38. readRedirect bool,
  39. compactionMBPerSecond int,
  40. fileSizeLimitMB int,
  41. ) *VolumeServer {
  42. v := util.GetViper()
  43. signingKey := v.GetString("jwt.signing.key")
  44. v.SetDefault("jwt.signing.expires_after_seconds", 10)
  45. expiresAfterSec := v.GetInt("jwt.signing.expires_after_seconds")
  46. enableUiAccess := v.GetBool("access.ui")
  47. readSigningKey := v.GetString("jwt.signing.read.key")
  48. v.SetDefault("jwt.signing.read.expires_after_seconds", 60)
  49. readExpiresAfterSec := v.GetInt("jwt.signing.read.expires_after_seconds")
  50. vs := &VolumeServer{
  51. pulseSeconds: pulseSeconds,
  52. dataCenter: dataCenter,
  53. rack: rack,
  54. needleMapKind: needleMapKind,
  55. FixJpgOrientation: fixJpgOrientation,
  56. ReadRedirect: readRedirect,
  57. grpcDialOption: security.LoadClientTLS(util.GetViper(), "grpc.volume"),
  58. compactionBytePerSecond: int64(compactionMBPerSecond) * 1024 * 1024,
  59. fileSizeLimitBytes: int64(fileSizeLimitMB) * 1024 * 1024,
  60. SendHeartbeat: true,
  61. }
  62. vs.SeedMasterNodes = masterNodes
  63. vs.store = storage.NewStore(vs.grpcDialOption, port, ip, publicUrl, folders, maxCounts, minFreeSpacePercents, vs.needleMapKind)
  64. vs.guard = security.NewGuard(whiteList, signingKey, expiresAfterSec, readSigningKey, readExpiresAfterSec)
  65. handleStaticResources(adminMux)
  66. adminMux.HandleFunc("/status", vs.statusHandler)
  67. if signingKey == "" || enableUiAccess {
  68. // only expose the volume server details for safe environments
  69. adminMux.HandleFunc("/ui/index.html", vs.uiStatusHandler)
  70. /*
  71. adminMux.HandleFunc("/stats/counter", vs.guard.WhiteList(statsCounterHandler))
  72. adminMux.HandleFunc("/stats/memory", vs.guard.WhiteList(statsMemoryHandler))
  73. adminMux.HandleFunc("/stats/disk", vs.guard.WhiteList(vs.statsDiskHandler))
  74. */
  75. }
  76. adminMux.HandleFunc("/", vs.privateStoreHandler)
  77. if publicMux != adminMux {
  78. // separated admin and public port
  79. handleStaticResources(publicMux)
  80. publicMux.HandleFunc("/", vs.publicReadOnlyHandler)
  81. }
  82. go vs.heartbeat()
  83. hostAddress := fmt.Sprintf("%s:%d", ip, port)
  84. go stats.LoopPushingMetric("volumeServer", hostAddress, stats.VolumeServerGather,
  85. func() (addr string, intervalSeconds int) {
  86. return vs.MetricsAddress, vs.MetricsIntervalSec
  87. })
  88. return vs
  89. }
  90. func (vs *VolumeServer) Shutdown() {
  91. glog.V(0).Infoln("Shutting down volume server...")
  92. vs.store.Close()
  93. glog.V(0).Infoln("Shut down successfully!")
  94. }