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.

100 lines
3.2 KiB

6 years ago
6 years ago
6 years ago
6 years ago
  1. package weed_server
  2. import (
  3. "fmt"
  4. "net/http"
  5. "github.com/chrislusf/seaweedfs/weed/stats"
  6. "google.golang.org/grpc"
  7. "github.com/chrislusf/seaweedfs/weed/glog"
  8. "github.com/chrislusf/seaweedfs/weed/security"
  9. "github.com/chrislusf/seaweedfs/weed/storage"
  10. "github.com/spf13/viper"
  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. }
  28. func NewVolumeServer(adminMux, publicMux *http.ServeMux, ip string,
  29. port int, publicUrl string,
  30. folders []string, maxCounts []int,
  31. needleMapKind storage.NeedleMapType,
  32. masterNodes []string, pulseSeconds int,
  33. dataCenter string, rack string,
  34. whiteList []string,
  35. fixJpgOrientation bool,
  36. readRedirect bool,
  37. compactionMBPerSecond int,
  38. metricsAddress string,
  39. metricsIntervalSec int,
  40. ) *VolumeServer {
  41. v := viper.GetViper()
  42. signingKey := v.GetString("jwt.signing.key")
  43. v.SetDefault("jwt.signing.expires_after_seconds", 10)
  44. expiresAfterSec := v.GetInt("jwt.signing.expires_after_seconds")
  45. enableUiAccess := v.GetBool("access.ui")
  46. readSigningKey := v.GetString("jwt.signing.read.key")
  47. v.SetDefault("jwt.signing.read.expires_after_seconds", 60)
  48. readExpiresAfterSec := v.GetInt("jwt.signing.read.expires_after_seconds")
  49. vs := &VolumeServer{
  50. pulseSeconds: pulseSeconds,
  51. dataCenter: dataCenter,
  52. rack: rack,
  53. needleMapKind: needleMapKind,
  54. FixJpgOrientation: fixJpgOrientation,
  55. ReadRedirect: readRedirect,
  56. grpcDialOption: security.LoadClientTLS(viper.Sub("grpc"), "volume"),
  57. compactionBytePerSecond: int64(compactionMBPerSecond) * 1024 * 1024,
  58. }
  59. vs.SeedMasterNodes = masterNodes
  60. vs.store = storage.NewStore(vs.grpcDialOption, port, ip, publicUrl, folders, maxCounts, vs.needleMapKind)
  61. vs.guard = security.NewGuard(whiteList, signingKey, expiresAfterSec, readSigningKey, readExpiresAfterSec)
  62. handleStaticResources(adminMux)
  63. if signingKey == "" || enableUiAccess {
  64. // only expose the volume server details for safe environments
  65. adminMux.HandleFunc("/ui/index.html", vs.uiStatusHandler)
  66. adminMux.HandleFunc("/status", vs.guard.WhiteList(vs.statusHandler))
  67. adminMux.HandleFunc("/stats/counter", vs.guard.WhiteList(statsCounterHandler))
  68. adminMux.HandleFunc("/stats/memory", vs.guard.WhiteList(statsMemoryHandler))
  69. adminMux.HandleFunc("/stats/disk", vs.guard.WhiteList(vs.statsDiskHandler))
  70. }
  71. adminMux.HandleFunc("/", vs.privateStoreHandler)
  72. if publicMux != adminMux {
  73. // separated admin and public port
  74. handleStaticResources(publicMux)
  75. publicMux.HandleFunc("/", vs.publicReadOnlyHandler)
  76. }
  77. go vs.heartbeat()
  78. hostAddress := fmt.Sprintf("%s:%d", ip, port)
  79. stats.StartPushingMetric("volumeServer", hostAddress, stats.VolumeServerGather, metricsAddress, metricsIntervalSec)
  80. return vs
  81. }
  82. func (vs *VolumeServer) Shutdown() {
  83. glog.V(0).Infoln("Shutting down volume server...")
  84. vs.store.Close()
  85. glog.V(0).Infoln("Shut down successfully!")
  86. }