2013-12-02 09:37:36 +00:00
|
|
|
package weed_server
|
|
|
|
|
|
|
|
import (
|
2019-06-15 19:21:44 +00:00
|
|
|
"fmt"
|
2018-10-11 08:16:33 +00:00
|
|
|
"net/http"
|
|
|
|
|
2019-06-15 19:21:44 +00:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2020-01-03 08:37:24 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/stats"
|
2020-01-29 17:09:55 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2020-01-03 08:37:24 +00:00
|
|
|
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/security"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage"
|
2013-12-02 09:37:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type VolumeServer struct {
|
2019-05-28 04:22:23 +00:00
|
|
|
SeedMasterNodes []string
|
|
|
|
currentMaster string
|
|
|
|
pulseSeconds int
|
|
|
|
dataCenter string
|
|
|
|
rack string
|
|
|
|
store *storage.Store
|
|
|
|
guard *security.Guard
|
|
|
|
grpcDialOption grpc.DialOption
|
2014-05-15 08:08:00 +00:00
|
|
|
|
2019-05-04 00:22:39 +00:00
|
|
|
needleMapKind storage.NeedleMapType
|
|
|
|
FixJpgOrientation bool
|
|
|
|
ReadRedirect bool
|
|
|
|
compactionBytePerSecond int64
|
2019-06-14 07:54:56 +00:00
|
|
|
MetricsAddress string
|
|
|
|
MetricsIntervalSec int
|
2020-01-03 08:37:24 +00:00
|
|
|
fileSizeLimitBytes int64
|
2013-12-02 09:37:36 +00:00
|
|
|
}
|
|
|
|
|
2015-03-09 08:10:01 +00:00
|
|
|
func NewVolumeServer(adminMux, publicMux *http.ServeMux, ip string,
|
|
|
|
port int, publicUrl string,
|
2015-01-19 01:03:38 +00:00
|
|
|
folders []string, maxCounts []int,
|
Add boltdb for volume needle map
boltdb is fairly slow to write, about 6 minutes for recreating index
for 1553934 files. Boltdb loads 1,553,934 x 16 = 24,862,944bytes from
disk, and generate the boltdb as large as 134,217,728 bytes in 6
minutes.
To compare, for leveldb, it recreates index in leveldb as large as
27,188,148 bytes in 8 seconds.
For in memory version, it loads the index in
To test the memory consumption, the leveldb or boltdb index are
created. And the server is restarted. Using the benchmark tool to read
lots of files. There are 7 volumes in benchmark collection, each with
about 1553K files.
For leveldb, the memory starts at 142,884KB, and stays at 179,340KB.
For boltdb, the memory starts at 73,756KB, and stays at 144,564KB.
For in-memory, the memory starts at 368,152KB, and stays at 448,032KB.
2015-03-29 18:04:32 +00:00
|
|
|
needleMapKind storage.NeedleMapType,
|
2018-06-01 07:39:39 +00:00
|
|
|
masterNodes []string, pulseSeconds int,
|
2013-12-02 09:37:36 +00:00
|
|
|
dataCenter string, rack string,
|
2015-01-05 22:20:04 +00:00
|
|
|
whiteList []string,
|
2015-08-03 21:43:15 +00:00
|
|
|
fixJpgOrientation bool,
|
2019-05-04 00:22:39 +00:00
|
|
|
readRedirect bool,
|
|
|
|
compactionMBPerSecond int,
|
2020-01-03 08:37:24 +00:00
|
|
|
fileSizeLimitMB int,
|
2019-05-04 00:22:39 +00:00
|
|
|
) *VolumeServer {
|
2019-02-14 08:08:20 +00:00
|
|
|
|
2020-01-29 17:09:55 +00:00
|
|
|
v := util.GetViper()
|
2019-02-14 08:08:20 +00:00
|
|
|
signingKey := v.GetString("jwt.signing.key")
|
2019-05-04 15:42:25 +00:00
|
|
|
v.SetDefault("jwt.signing.expires_after_seconds", 10)
|
|
|
|
expiresAfterSec := v.GetInt("jwt.signing.expires_after_seconds")
|
2019-02-14 08:08:20 +00:00
|
|
|
enableUiAccess := v.GetBool("access.ui")
|
|
|
|
|
2019-06-06 07:29:02 +00: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 09:37:36 +00:00
|
|
|
vs := &VolumeServer{
|
2019-05-04 00:22:39 +00:00
|
|
|
pulseSeconds: pulseSeconds,
|
|
|
|
dataCenter: dataCenter,
|
|
|
|
rack: rack,
|
|
|
|
needleMapKind: needleMapKind,
|
|
|
|
FixJpgOrientation: fixJpgOrientation,
|
|
|
|
ReadRedirect: readRedirect,
|
2020-01-29 17:09:55 +00:00
|
|
|
grpcDialOption: security.LoadClientTLS(util.GetViper(), "grpc.volume"),
|
2019-05-04 00:22:39 +00:00
|
|
|
compactionBytePerSecond: int64(compactionMBPerSecond) * 1024 * 1024,
|
2020-01-03 08:37:24 +00:00
|
|
|
fileSizeLimitBytes: int64(fileSizeLimitMB) * 1024 * 1024,
|
2013-12-02 09:37:36 +00:00
|
|
|
}
|
2019-05-28 04:22:23 +00:00
|
|
|
vs.SeedMasterNodes = masterNodes
|
|
|
|
vs.store = storage.NewStore(vs.grpcDialOption, port, ip, publicUrl, folders, maxCounts, vs.needleMapKind)
|
2013-12-02 09:37:36 +00:00
|
|
|
|
2019-06-06 07:29:02 +00:00
|
|
|
vs.guard = security.NewGuard(whiteList, signingKey, expiresAfterSec, readSigningKey, readExpiresAfterSec)
|
2015-01-05 22:20:04 +00:00
|
|
|
|
2018-10-07 17:54:05 +00:00
|
|
|
handleStaticResources(adminMux)
|
2019-02-14 08:08:20 +00:00
|
|
|
if signingKey == "" || enableUiAccess {
|
|
|
|
// only expose the volume server details for safe environments
|
|
|
|
adminMux.HandleFunc("/ui/index.html", vs.uiStatusHandler)
|
|
|
|
adminMux.HandleFunc("/status", vs.guard.WhiteList(vs.statusHandler))
|
2020-02-22 05:45:03 +00: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 08:08:20 +00:00
|
|
|
}
|
2015-03-13 14:59:29 +00:00
|
|
|
adminMux.HandleFunc("/", vs.privateStoreHandler)
|
2015-02-26 07:59:07 +00:00
|
|
|
if publicMux != adminMux {
|
|
|
|
// separated admin and public port
|
2018-10-07 17:54:05 +00:00
|
|
|
handleStaticResources(publicMux)
|
2015-03-13 14:59:29 +00:00
|
|
|
publicMux.HandleFunc("/", vs.publicReadOnlyHandler)
|
2015-02-26 07:59:07 +00:00
|
|
|
}
|
2013-12-02 09:37:36 +00:00
|
|
|
|
2017-01-10 09:01:12 +00:00
|
|
|
go vs.heartbeat()
|
2019-06-15 19:21:44 +00:00
|
|
|
hostAddress := fmt.Sprintf("%s:%d", ip, port)
|
2019-06-17 21:51:47 +00:00
|
|
|
go stats.LoopPushingMetric("volumeServer", hostAddress, stats.VolumeServerGather,
|
|
|
|
func() (addr string, intervalSeconds int) {
|
|
|
|
return vs.MetricsAddress, vs.MetricsIntervalSec
|
|
|
|
})
|
2013-12-02 09:37:36 +00:00
|
|
|
|
|
|
|
return vs
|
|
|
|
}
|
2014-05-13 07:03:10 +00:00
|
|
|
|
|
|
|
func (vs *VolumeServer) Shutdown() {
|
|
|
|
glog.V(0).Infoln("Shutting down volume server...")
|
|
|
|
vs.store.Close()
|
|
|
|
glog.V(0).Infoln("Shut down successfully!")
|
|
|
|
}
|