2013-12-02 01:37:36 -08:00
|
|
|
package weed_server
|
|
|
|
|
|
|
|
import (
|
2022-05-16 10:41:18 +08:00
|
|
|
"net/http"
|
|
|
|
"sync"
|
2022-05-20 18:18:20 +08:00
|
|
|
"time"
|
2022-05-16 10:41:18 +08:00
|
|
|
|
2022-07-29 00:17:28 -07:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/volume_server_pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/storage/types"
|
2018-10-11 01:16:33 -07:00
|
|
|
|
2019-06-15 12:21:44 -07:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2022-07-29 00:17:28 -07:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/stats"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
2020-01-03 00:37:24 -08:00
|
|
|
|
2022-07-29 00:17:28 -07:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/security"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/storage"
|
2013-12-02 01:37:36 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
type VolumeServer struct {
|
2021-12-05 00:42:25 -08:00
|
|
|
volume_server_pb.UnimplementedVolumeServerServer
|
2021-08-08 23:25:16 -07:00
|
|
|
inFlightUploadDataSize int64
|
|
|
|
inFlightDownloadDataSize int64
|
|
|
|
concurrentUploadLimit int64
|
|
|
|
concurrentDownloadLimit int64
|
2022-05-20 14:33:47 +08:00
|
|
|
inFlightUploadDataLimitCond *sync.Cond
|
2021-08-08 23:25:16 -07:00
|
|
|
inFlightDownloadDataLimitCond *sync.Cond
|
2022-05-20 18:18:20 +08:00
|
|
|
inflightUploadDataTimeout time.Duration
|
2025-07-03 06:03:49 +05:00
|
|
|
inflightDownloadDataTimeout time.Duration
|
2022-09-15 03:11:32 -07:00
|
|
|
hasSlowRead bool
|
2022-09-17 10:50:06 -07:00
|
|
|
readBufferSizeMB int
|
2021-07-02 13:57:34 -07:00
|
|
|
|
2021-09-12 22:47:52 -07:00
|
|
|
SeedMasterNodes []pb.ServerAddress
|
2024-12-02 23:38:10 +05:00
|
|
|
whiteList []string
|
2021-09-12 22:47:52 -07:00
|
|
|
currentMaster pb.ServerAddress
|
2019-05-27 21:22:23 -07:00
|
|
|
pulseSeconds int
|
|
|
|
dataCenter string
|
|
|
|
rack string
|
|
|
|
store *storage.Store
|
|
|
|
guard *security.Guard
|
|
|
|
grpcDialOption grpc.DialOption
|
2014-05-15 01:08:00 -07:00
|
|
|
|
2021-02-07 09:00:03 +08:00
|
|
|
needleMapKind storage.NeedleMapKind
|
2022-11-14 16:19:27 +08:00
|
|
|
ldbTimout int64
|
2020-07-10 10:08:36 +08:00
|
|
|
FixJpgOrientation bool
|
2021-07-01 01:21:14 -07:00
|
|
|
ReadMode string
|
2019-05-03 17:22:39 -07:00
|
|
|
compactionBytePerSecond int64
|
2020-09-19 00:03:00 -07:00
|
|
|
metricsAddress string
|
|
|
|
metricsIntervalSec int
|
2020-01-03 00:37:24 -08:00
|
|
|
fileSizeLimitBytes int64
|
2020-09-13 21:25:51 -07:00
|
|
|
isHeartbeating bool
|
|
|
|
stopChan chan bool
|
2013-12-02 01:37:36 -08:00
|
|
|
}
|
|
|
|
|
2015-03-09 01:10:01 -07:00
|
|
|
func NewVolumeServer(adminMux, publicMux *http.ServeMux, ip string,
|
2021-09-12 22:47:52 -07:00
|
|
|
port int, grpcPort int, publicUrl string,
|
2022-08-26 17:09:11 -07:00
|
|
|
folders []string, maxCounts []int32, minFreeSpaces []util.MinFreeSpace, diskTypes []types.DiskType,
|
2020-12-13 22:29:52 -08:00
|
|
|
idxFolder string,
|
2021-02-07 09:00:03 +08:00
|
|
|
needleMapKind storage.NeedleMapKind,
|
2021-09-12 22:47:52 -07:00
|
|
|
masterNodes []pb.ServerAddress, pulseSeconds int,
|
2013-12-02 01:37:36 -08:00
|
|
|
dataCenter string, rack string,
|
2015-01-05 14:20:04 -08:00
|
|
|
whiteList []string,
|
2020-07-10 10:08:36 +08:00
|
|
|
fixJpgOrientation bool,
|
2021-06-30 17:28:37 +08:00
|
|
|
readMode string,
|
2019-05-03 17:22:39 -07:00
|
|
|
compactionMBPerSecond int,
|
2020-01-03 00:37:24 -08:00
|
|
|
fileSizeLimitMB int,
|
2021-03-30 02:10:50 -07:00
|
|
|
concurrentUploadLimit int64,
|
2021-08-08 23:25:16 -07:00
|
|
|
concurrentDownloadLimit int64,
|
2022-05-20 18:18:20 +08:00
|
|
|
inflightUploadDataTimeout time.Duration,
|
2025-07-03 06:03:49 +05:00
|
|
|
inflightDownloadDataTimeout time.Duration,
|
2022-09-15 03:11:32 -07:00
|
|
|
hasSlowRead bool,
|
2022-09-17 10:50:06 -07:00
|
|
|
readBufferSizeMB int,
|
2022-11-14 16:19:27 +08:00
|
|
|
ldbTimeout int64,
|
2019-05-03 17:22:39 -07:00
|
|
|
) *VolumeServer {
|
2019-02-14 00:08:20 -08:00
|
|
|
|
2020-01-29 09:09:55 -08:00
|
|
|
v := util.GetViper()
|
2019-02-14 00:08:20 -08:00
|
|
|
signingKey := v.GetString("jwt.signing.key")
|
2019-05-04 08:42:25 -07:00
|
|
|
v.SetDefault("jwt.signing.expires_after_seconds", 10)
|
|
|
|
expiresAfterSec := v.GetInt("jwt.signing.expires_after_seconds")
|
2019-02-14 00:08:20 -08:00
|
|
|
enableUiAccess := v.GetBool("access.ui")
|
|
|
|
|
2019-06-06 00:29:02 -07:00
|
|
|
readSigningKey := v.GetString("jwt.signing.read.key")
|
|
|
|
v.SetDefault("jwt.signing.read.expires_after_seconds", 60)
|
|
|
|
readExpiresAfterSec := v.GetInt("jwt.signing.read.expires_after_seconds")
|
|
|
|
|
2013-12-02 01:37:36 -08:00
|
|
|
vs := &VolumeServer{
|
2021-08-08 23:25:16 -07:00
|
|
|
pulseSeconds: pulseSeconds,
|
|
|
|
dataCenter: dataCenter,
|
|
|
|
rack: rack,
|
|
|
|
needleMapKind: needleMapKind,
|
|
|
|
FixJpgOrientation: fixJpgOrientation,
|
|
|
|
ReadMode: readMode,
|
|
|
|
grpcDialOption: security.LoadClientTLS(util.GetViper(), "grpc.volume"),
|
|
|
|
compactionBytePerSecond: int64(compactionMBPerSecond) * 1024 * 1024,
|
|
|
|
fileSizeLimitBytes: int64(fileSizeLimitMB) * 1024 * 1024,
|
|
|
|
isHeartbeating: true,
|
|
|
|
stopChan: make(chan bool),
|
2022-05-20 14:33:47 +08:00
|
|
|
inFlightUploadDataLimitCond: sync.NewCond(new(sync.Mutex)),
|
2021-08-08 23:25:16 -07:00
|
|
|
inFlightDownloadDataLimitCond: sync.NewCond(new(sync.Mutex)),
|
|
|
|
concurrentUploadLimit: concurrentUploadLimit,
|
|
|
|
concurrentDownloadLimit: concurrentDownloadLimit,
|
2022-05-20 18:18:20 +08:00
|
|
|
inflightUploadDataTimeout: inflightUploadDataTimeout,
|
2022-09-15 03:11:32 -07:00
|
|
|
hasSlowRead: hasSlowRead,
|
2022-09-17 10:50:06 -07:00
|
|
|
readBufferSizeMB: readBufferSizeMB,
|
2022-11-14 16:19:27 +08:00
|
|
|
ldbTimout: ldbTimeout,
|
2024-12-02 23:38:10 +05:00
|
|
|
whiteList: whiteList,
|
2013-12-02 01:37:36 -08:00
|
|
|
}
|
2024-12-02 23:38:10 +05:00
|
|
|
|
|
|
|
whiteList = append(whiteList, util.StringSplit(v.GetString("guard.white_list"), ",")...)
|
2019-05-27 21:22:23 -07:00
|
|
|
vs.SeedMasterNodes = masterNodes
|
2020-09-16 01:27:05 -07:00
|
|
|
|
|
|
|
vs.checkWithMaster()
|
|
|
|
|
2022-11-14 16:19:27 +08:00
|
|
|
vs.store = storage.NewStore(vs.grpcDialOption, ip, port, grpcPort, publicUrl, folders, maxCounts, minFreeSpaces, idxFolder, vs.needleMapKind, diskTypes, ldbTimeout)
|
2019-06-06 00:29:02 -07:00
|
|
|
vs.guard = security.NewGuard(whiteList, signingKey, expiresAfterSec, readSigningKey, readExpiresAfterSec)
|
2015-01-05 14:20:04 -08:00
|
|
|
|
2018-10-07 10:54:05 -07:00
|
|
|
handleStaticResources(adminMux)
|
2025-05-21 17:57:39 +03:00
|
|
|
adminMux.HandleFunc("/status", requestIDMiddleware(vs.statusHandler))
|
|
|
|
adminMux.HandleFunc("/healthz", requestIDMiddleware(vs.healthzHandler))
|
2019-02-14 00:08:20 -08:00
|
|
|
if signingKey == "" || enableUiAccess {
|
|
|
|
// only expose the volume server details for safe environments
|
2025-05-21 17:57:39 +03:00
|
|
|
adminMux.HandleFunc("/ui/index.html", requestIDMiddleware(vs.uiStatusHandler))
|
2020-02-21 21:45:03 -08:00
|
|
|
/*
|
|
|
|
adminMux.HandleFunc("/stats/counter", vs.guard.WhiteList(statsCounterHandler))
|
|
|
|
adminMux.HandleFunc("/stats/memory", vs.guard.WhiteList(statsMemoryHandler))
|
|
|
|
adminMux.HandleFunc("/stats/disk", vs.guard.WhiteList(vs.statsDiskHandler))
|
|
|
|
*/
|
2019-02-14 00:08:20 -08:00
|
|
|
}
|
2025-05-21 17:57:39 +03:00
|
|
|
adminMux.HandleFunc("/", requestIDMiddleware(vs.privateStoreHandler))
|
2015-02-25 23:59:07 -08:00
|
|
|
if publicMux != adminMux {
|
|
|
|
// separated admin and public port
|
2018-10-07 10:54:05 -07:00
|
|
|
handleStaticResources(publicMux)
|
2025-05-21 17:57:39 +03:00
|
|
|
publicMux.HandleFunc("/", requestIDMiddleware(vs.publicReadOnlyHandler))
|
2015-02-25 23:59:07 -08:00
|
|
|
}
|
2013-12-02 01:37:36 -08:00
|
|
|
|
2025-07-03 06:03:49 +05:00
|
|
|
stats.VolumeServerConcurrentDownloadLimit.Set(float64(vs.concurrentDownloadLimit))
|
|
|
|
stats.VolumeServerConcurrentUploadLimit.Set(float64(vs.concurrentUploadLimit))
|
|
|
|
|
2017-01-10 01:01:12 -08:00
|
|
|
go vs.heartbeat()
|
2021-09-07 16:43:54 -07:00
|
|
|
go stats.LoopPushingMetric("volumeServer", util.JoinHostPort(ip, port), vs.metricsAddress, vs.metricsIntervalSec)
|
2013-12-02 01:37:36 -08:00
|
|
|
|
|
|
|
return vs
|
|
|
|
}
|
2014-05-13 00:03:10 -07:00
|
|
|
|
2021-07-13 01:29:57 -07:00
|
|
|
func (vs *VolumeServer) SetStopping() {
|
|
|
|
glog.V(0).Infoln("Stopping volume server...")
|
|
|
|
vs.store.SetStopping()
|
|
|
|
}
|
|
|
|
|
2022-09-29 00:44:13 +05:00
|
|
|
func (vs *VolumeServer) LoadNewVolumes() {
|
|
|
|
glog.V(0).Infoln(" Loading new volume ids ...")
|
|
|
|
vs.store.LoadNewVolumes()
|
|
|
|
}
|
|
|
|
|
2014-05-13 00:03:10 -07:00
|
|
|
func (vs *VolumeServer) Shutdown() {
|
|
|
|
glog.V(0).Infoln("Shutting down volume server...")
|
|
|
|
vs.store.Close()
|
|
|
|
glog.V(0).Infoln("Shut down successfully!")
|
|
|
|
}
|
2024-12-02 23:38:10 +05:00
|
|
|
|
|
|
|
func (vs *VolumeServer) Reload() {
|
|
|
|
glog.V(0).Infoln("Reload volume server...")
|
|
|
|
|
|
|
|
util.LoadConfiguration("security", false)
|
|
|
|
v := util.GetViper()
|
|
|
|
vs.guard.UpdateWhiteList(append(vs.whiteList, util.StringSplit(v.GetString("guard.white_list"), ",")...))
|
|
|
|
}
|