2016-06-03 01:09:14 +00:00
package command
2012-08-07 08:29:22 +00:00
import (
2019-11-17 03:40:36 +00:00
"fmt"
2018-10-11 07:08:13 +00:00
"net/http"
2020-06-10 09:52:24 +00:00
httppprof "net/http/pprof"
2012-09-17 00:31:15 +00:00
"os"
2018-10-11 07:08:13 +00:00
"runtime/pprof"
2012-08-24 05:46:54 +00:00
"strconv"
"strings"
2018-10-11 07:08:13 +00:00
"time"
2022-07-29 07:17:28 +00:00
"github.com/seaweedfs/seaweedfs/weed/storage/types"
2022-03-14 23:22:52 +00:00
2019-06-05 08:30:24 +00:00
"github.com/spf13/viper"
2019-11-17 03:40:36 +00:00
"google.golang.org/grpc"
2019-06-05 08:30:24 +00:00
2022-07-29 07:17:28 +00:00
"github.com/seaweedfs/seaweedfs/weed/util/grace"
2020-06-10 20:10:10 +00:00
2022-07-29 07:17:28 +00:00
"github.com/seaweedfs/seaweedfs/weed/pb"
"github.com/seaweedfs/seaweedfs/weed/security"
"github.com/seaweedfs/seaweedfs/weed/util/httpdown"
2020-01-03 08:37:24 +00:00
"google.golang.org/grpc/reflection"
2022-07-29 07:17:28 +00:00
"github.com/seaweedfs/seaweedfs/weed/glog"
"github.com/seaweedfs/seaweedfs/weed/pb/volume_server_pb"
weed_server "github.com/seaweedfs/seaweedfs/weed/server"
stats_collect "github.com/seaweedfs/seaweedfs/weed/stats"
"github.com/seaweedfs/seaweedfs/weed/storage"
"github.com/seaweedfs/seaweedfs/weed/util"
2012-08-07 08:29:22 +00:00
)
2015-01-13 08:27:51 +00:00
var (
v VolumeServerOptions
)
type VolumeServerOptions struct {
2021-08-09 06:25:16 +00:00
port * int
2021-09-12 09:25:15 +00:00
portGrpc * int
2021-08-09 06:25:16 +00:00
publicPort * int
folders [ ] string
folderMaxLimits [ ] int
idxFolder * string
ip * string
publicUrl * string
bindIp * string
2021-09-13 05:47:52 +00:00
mastersString * string
masters [ ] pb . ServerAddress
2021-08-09 06:25:16 +00:00
idleConnectionTimeout * int
dataCenter * string
rack * string
whiteList [ ] string
indexType * string
diskType * string
fixJpgOrientation * bool
readMode * string
cpuProfile * string
memProfile * string
compactionMBPerSecond * int
fileSizeLimitMB * int
concurrentUploadLimitMB * int
concurrentDownloadLimitMB * int
pprof * bool
preStopSeconds * int
metricsHttpPort * int
2020-06-10 20:10:10 +00:00
// pulseSeconds *int
2022-05-20 10:18:20 +00:00
enableTcp * bool
inflightUploadDataTimeout * time . Duration
2015-01-13 08:27:51 +00:00
}
2012-08-07 08:29:22 +00:00
func init ( ) {
2012-08-24 05:46:54 +00:00
cmdVolume . Run = runVolume // break init cycle
2015-01-13 08:27:51 +00:00
v . port = cmdVolume . Flag . Int ( "port" , 8080 , "http listen port" )
2021-09-20 21:05:59 +00:00
v . portGrpc = cmdVolume . Flag . Int ( "port.grpc" , 0 , "grpc listen port" )
2015-03-09 08:10:01 +00:00
v . publicPort = cmdVolume . Flag . Int ( "port.public" , 0 , "port opened to public" )
2021-03-24 00:27:57 +00:00
v . ip = cmdVolume . Flag . String ( "ip" , util . DetectedHostAddress ( ) , "ip or server name, also used as identifier" )
2015-02-02 23:51:25 +00:00
v . publicUrl = cmdVolume . Flag . String ( "publicUrl" , "" , "Publicly accessible address" )
2022-03-11 22:02:39 +00:00
v . bindIp = cmdVolume . Flag . String ( "ip.bind" , "" , "ip address to bind to. If empty, default to same as -ip option." )
2021-09-13 05:47:52 +00:00
v . mastersString = cmdVolume . Flag . String ( "mserver" , "localhost:9333" , "comma-separated master servers" )
2020-09-12 11:05:33 +00:00
v . preStopSeconds = cmdVolume . Flag . Int ( "preStopSeconds" , 10 , "number of seconds between stop send heartbeats and stop volume server" )
2020-06-04 17:52:01 +00:00
// v.pulseSeconds = cmdVolume.Flag.Int("pulseSeconds", 5, "number of seconds between heartbeats, must be smaller than or equal to the master's setting")
2017-01-10 09:01:12 +00:00
v . idleConnectionTimeout = cmdVolume . Flag . Int ( "idleTimeout" , 30 , "connection idle seconds" )
2015-01-13 08:27:51 +00:00
v . dataCenter = cmdVolume . Flag . String ( "dataCenter" , "" , "current volume server's data center name" )
v . rack = cmdVolume . Flag . String ( "rack" , "" , "current volume server's rack name" )
2019-04-09 16:42:06 +00:00
v . indexType = cmdVolume . Flag . String ( "index" , "memory" , "Choose [memory|leveldb|leveldbMedium|leveldbLarge] mode for memory~performance balance." )
2021-02-22 10:03:12 +00:00
v . diskType = cmdVolume . Flag . String ( "disk" , "" , "[hdd|ssd|<tag>] hard drive or solid state drive or any tag" )
2020-07-10 02:08:36 +00:00
v . fixJpgOrientation = cmdVolume . Flag . Bool ( "images.fix.orientation" , false , "Adjust jpg orientation when uploading." )
2021-07-03 22:55:56 +00:00
v . readMode = cmdVolume . Flag . String ( "readMode" , "proxy" , "[local|proxy|redirect] how to deal with non-local volume: 'not found|proxy to remote node|redirect volume location'." )
2017-06-22 08:33:58 +00:00
v . cpuProfile = cmdVolume . Flag . String ( "cpuprofile" , "" , "cpu profile output file" )
v . memProfile = cmdVolume . Flag . String ( "memprofile" , "" , "memory profile output file" )
2019-05-06 21:12:19 +00:00
v . compactionMBPerSecond = cmdVolume . Flag . Int ( "compactionMBps" , 0 , "limit background compaction or copying speed in mega bytes per second" )
2020-10-29 22:46:26 +00:00
v . fileSizeLimitMB = cmdVolume . Flag . Int ( "fileSizeLimitMB" , 256 , "limit file size to avoid out of memory" )
2021-08-09 06:25:16 +00:00
v . concurrentUploadLimitMB = cmdVolume . Flag . Int ( "concurrentUploadLimitMB" , 256 , "limit total concurrent upload size" )
v . concurrentDownloadLimitMB = cmdVolume . Flag . Int ( "concurrentDownloadLimitMB" , 256 , "limit total concurrent download size" )
2020-06-10 09:52:24 +00:00
v . pprof = cmdVolume . Flag . Bool ( "pprof" , false , "enable pprof http handlers. precludes --memprofile and --cpuprofile" )
2020-09-24 12:45:39 +00:00
v . metricsHttpPort = cmdVolume . Flag . Int ( "metricsPort" , 0 , "Prometheus metrics listen port" )
2020-11-27 11:17:10 +00:00
v . idxFolder = cmdVolume . Flag . String ( "dir.idx" , "" , "directory to store .idx files" )
2022-02-28 07:11:09 +00:00
v . enableTcp = cmdVolume . Flag . Bool ( "tcp" , false , "<experimental> enable tcp port" )
2022-05-20 10:18:20 +00:00
v . inflightUploadDataTimeout = cmdVolume . Flag . Duration ( "inflightUploadDataTimeout" , 60 * time . Second , "inflight upload data wait timeout of volume servers" )
2012-08-07 08:29:22 +00:00
}
var cmdVolume = & Command {
2012-09-26 08:55:56 +00:00
UsageLine : "volume -port=8080 -dir=/tmp -max=5 -ip=server_name -mserver=localhost:9333" ,
2012-08-24 05:46:54 +00:00
Short : "start a volume server" ,
Long : ` start a volume server to provide storage spaces
2012-08-07 08:29:22 +00:00
` ,
}
var (
2013-08-28 17:39:15 +00:00
volumeFolders = cmdVolume . Flag . String ( "dir" , os . TempDir ( ) , "directories to store data files. dir[,dir]..." )
2022-01-13 21:03:04 +00:00
maxVolumeCounts = cmdVolume . Flag . String ( "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." )
2013-08-13 16:22:06 +00:00
volumeWhiteListOption = cmdVolume . Flag . String ( "whiteList" , "" , "comma separated Ip addresses having write permission. No limit if empty." )
2021-04-26 10:48:34 +00:00
minFreeSpacePercent = cmdVolume . Flag . String ( "minFreeSpacePercent" , "1" , "minimum free disk space (default to 1%). Low disk space will mark all volumes as ReadOnly (deprecated, use minFreeSpace instead)." )
minFreeSpace = cmdVolume . Flag . String ( "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." )
2012-08-07 08:29:22 +00:00
)
func runVolume ( cmd * Command , args [ ] string ) bool {
2019-02-18 20:11:52 +00:00
2019-06-05 08:30:24 +00:00
util . LoadConfiguration ( "security" , false )
2019-02-18 20:11:52 +00:00
2020-06-10 09:52:24 +00:00
// If --pprof is set we assume the caller wants to be able to collect
// cpu and memory profiles via go tool pprof
if ! * v . pprof {
grace . SetupProfiling ( * v . cpuProfile , * v . memProfile )
}
2015-01-13 08:27:51 +00:00
2020-09-24 17:21:23 +00:00
go stats_collect . StartMetricsServer ( * v . metricsHttpPort )
2021-04-27 02:37:24 +00:00
minFreeSpaces := util . MustParseMinFreeSpace ( * minFreeSpace , * minFreeSpacePercent )
2021-09-13 05:47:52 +00:00
v . masters = pb . ServerAddresses ( * v . mastersString ) . ToAddresses ( )
2021-04-27 02:37:24 +00:00
v . startVolumeServer ( * volumeFolders , * maxVolumeCounts , * volumeWhiteListOption , minFreeSpaces )
2018-10-11 07:04:31 +00:00
return true
}
2021-04-27 02:37:24 +00:00
func ( v VolumeServerOptions ) startVolumeServer ( volumeFolders , maxVolumeCounts , volumeWhiteListOption string , minFreeSpaces [ ] util . MinFreeSpace ) {
2018-10-11 07:04:31 +00:00
2019-11-17 03:40:36 +00:00
// Set multiple folders and each folder's max volume count limit'
2018-10-11 07:04:31 +00:00
v . folders = strings . Split ( volumeFolders , "," )
2020-06-21 15:38:00 +00:00
for _ , folder := range v . folders {
2020-07-17 05:50:14 +00:00
if err := util . TestFolderWritable ( util . ResolvePath ( folder ) ) ; err != nil {
2020-06-21 15:38:00 +00:00
glog . Fatalf ( "Check Data Folder(-dir) Writable %s : %s" , folder , err )
}
}
// set max
2018-10-11 07:04:31 +00:00
maxCountStrings := strings . Split ( maxVolumeCounts , "," )
2013-07-13 18:38:01 +00:00
for _ , maxString := range maxCountStrings {
if max , e := strconv . Atoi ( maxString ) ; e == nil {
2015-01-13 08:27:51 +00:00
v . folderMaxLimits = append ( v . folderMaxLimits , max )
2013-07-13 18:38:01 +00:00
} else {
2014-04-17 07:16:44 +00:00
glog . Fatalf ( "The max specified in -max not a valid number %s" , maxString )
2013-07-13 18:38:01 +00:00
}
2012-09-17 00:31:15 +00:00
}
2020-10-06 16:05:30 +00:00
if len ( v . folderMaxLimits ) == 1 && len ( v . folders ) > 1 {
for i := 0 ; i < len ( v . folders ) - 1 ; i ++ {
v . folderMaxLimits = append ( v . folderMaxLimits , v . folderMaxLimits [ 0 ] )
}
}
2015-01-13 08:27:51 +00:00
if len ( v . folders ) != len ( v . folderMaxLimits ) {
glog . Fatalf ( "%d directories by -dir, but only %d max is set by -max" , len ( v . folders ) , len ( v . folderMaxLimits ) )
2013-07-13 18:38:01 +00:00
}
2020-06-21 15:38:00 +00:00
2021-04-27 02:37:24 +00:00
if len ( minFreeSpaces ) == 1 && len ( v . folders ) > 1 {
2020-06-21 15:44:06 +00:00
for i := 0 ; i < len ( v . folders ) - 1 ; i ++ {
2021-04-27 02:37:24 +00:00
minFreeSpaces = append ( minFreeSpaces , minFreeSpaces [ 0 ] )
2020-06-21 15:44:06 +00:00
}
}
2021-04-27 02:37:24 +00:00
if len ( v . folders ) != len ( minFreeSpaces ) {
glog . Fatalf ( "%d directories by -dir, but only %d minFreeSpacePercent is set by -minFreeSpacePercent" , len ( v . folders ) , len ( minFreeSpaces ) )
2012-09-17 00:31:15 +00:00
}
2015-01-13 08:36:44 +00:00
2020-12-14 06:49:56 +00:00
// set disk types
2021-02-16 10:47:02 +00:00
var diskTypes [ ] types . DiskType
2020-12-14 06:49:56 +00:00
diskTypeStrings := strings . Split ( * v . diskType , "," )
for _ , diskTypeString := range diskTypeStrings {
2021-02-16 10:47:02 +00:00
diskTypes = append ( diskTypes , types . ToDiskType ( diskTypeString ) )
2020-12-14 06:49:56 +00:00
}
if len ( diskTypes ) == 1 && len ( v . folders ) > 1 {
for i := 0 ; i < len ( v . folders ) - 1 ; i ++ {
diskTypes = append ( diskTypes , diskTypes [ 0 ] )
}
}
if len ( v . folders ) != len ( diskTypes ) {
glog . Fatalf ( "%d directories by -dir, but only %d disk types is set by -disk" , len ( v . folders ) , len ( diskTypes ) )
}
2019-11-17 03:40:36 +00:00
// security related white list configuration
2018-10-11 07:04:31 +00:00
if volumeWhiteListOption != "" {
v . whiteList = strings . Split ( volumeWhiteListOption , "," )
2015-01-13 08:27:51 +00:00
}
2012-09-26 10:27:10 +00:00
2015-02-02 23:51:25 +00:00
if * v . ip == "" {
2020-04-09 07:26:24 +00:00
* v . ip = util . DetectedHostAddress ( )
2020-04-10 06:42:59 +00:00
glog . V ( 0 ) . Infof ( "detected volume server ip address: %v" , * v . ip )
2012-09-26 09:29:16 +00:00
}
2022-03-11 22:02:39 +00:00
if * v . bindIp == "" {
* v . bindIp = * v . ip
}
2012-09-20 09:11:08 +00:00
2015-03-09 08:10:01 +00:00
if * v . publicPort == 0 {
* v . publicPort = * v . port
2015-01-19 01:03:38 +00:00
}
2021-09-20 21:05:59 +00:00
if * v . portGrpc == 0 {
* v . portGrpc = 10000 + * v . port
}
2015-04-08 18:08:08 +00:00
if * v . publicUrl == "" {
2021-09-08 02:29:42 +00:00
* v . publicUrl = util . JoinHostPort ( * v . ip , * v . publicPort )
2015-04-08 18:08:08 +00:00
}
2015-01-19 01:03:38 +00:00
2015-03-09 08:10:01 +00:00
volumeMux := http . NewServeMux ( )
publicVolumeMux := volumeMux
2019-11-17 03:40:36 +00:00
if v . isSeparatedPublicPort ( ) {
2015-03-09 08:10:01 +00:00
publicVolumeMux = http . NewServeMux ( )
2015-01-19 01:03:38 +00:00
}
2012-08-24 05:46:54 +00:00
2020-06-10 09:52:24 +00:00
if * v . pprof {
volumeMux . HandleFunc ( "/debug/pprof/" , httppprof . Index )
volumeMux . HandleFunc ( "/debug/pprof/cmdline" , httppprof . Cmdline )
volumeMux . HandleFunc ( "/debug/pprof/profile" , httppprof . Profile )
volumeMux . HandleFunc ( "/debug/pprof/symbol" , httppprof . Symbol )
volumeMux . HandleFunc ( "/debug/pprof/trace" , httppprof . Trace )
}
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
volumeNeedleMapKind := storage . NeedleMapInMemory
switch * v . indexType {
case "leveldb" :
volumeNeedleMapKind = storage . NeedleMapLevelDb
2019-04-09 16:42:06 +00:00
case "leveldbMedium" :
2019-04-09 17:08:59 +00:00
volumeNeedleMapKind = storage . NeedleMapLevelDbMedium
2019-04-09 16:42:06 +00:00
case "leveldbLarge" :
2019-04-09 17:08:59 +00:00
volumeNeedleMapKind = storage . NeedleMapLevelDbLarge
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
}
2018-06-01 07:39:39 +00:00
2015-03-09 08:10:01 +00:00
volumeServer := weed_server . NewVolumeServer ( volumeMux , publicVolumeMux ,
2021-09-13 05:47:52 +00:00
* v . ip , * v . port , * v . portGrpc , * v . publicUrl ,
2021-04-27 02:37:24 +00:00
v . folders , v . folderMaxLimits , minFreeSpaces , diskTypes ,
2020-12-14 06:29:52 +00:00
* v . idxFolder ,
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
volumeNeedleMapKind ,
2021-09-13 05:47:52 +00:00
v . masters , 5 , * v . dataCenter , * v . rack ,
2015-01-13 08:27:51 +00:00
v . whiteList ,
2021-06-30 09:28:37 +00:00
* v . fixJpgOrientation , * v . readMode ,
2019-05-04 00:22:39 +00:00
* v . compactionMBPerSecond ,
2020-01-03 08:37:24 +00:00
* v . fileSizeLimitMB ,
2021-04-02 09:22:26 +00:00
int64 ( * v . concurrentUploadLimitMB ) * 1024 * 1024 ,
2021-08-09 06:25:16 +00:00
int64 ( * v . concurrentDownloadLimitMB ) * 1024 * 1024 ,
2022-05-20 10:18:20 +00:00
* v . inflightUploadDataTimeout ,
2013-12-02 09:37:36 +00:00
)
2019-11-17 03:40:36 +00:00
// starting grpc server
grpcS := v . startGrpcService ( volumeServer )
// starting public http server
var publicHttpDown httpdown . Server
if v . isSeparatedPublicPort ( ) {
publicHttpDown = v . startPublicHttpService ( publicVolumeMux )
if nil == publicHttpDown {
glog . Fatalf ( "start public http service failed" )
2015-01-19 01:03:38 +00:00
}
}
2014-03-20 18:07:15 +00:00
2021-03-05 10:29:38 +00:00
// starting tcp server
2021-03-07 22:45:36 +00:00
if * v . enableTcp {
go v . startTcpService ( volumeServer )
}
2021-03-05 10:29:38 +00:00
2019-11-17 03:40:36 +00:00
// starting the cluster http server
clusterHttpServer := v . startClusterHttpService ( volumeMux )
2020-09-14 04:25:51 +00:00
stopChan := make ( chan bool )
2020-04-28 06:10:23 +00:00
grace . OnInterrupt ( func ( ) {
2022-05-17 03:06:41 +00:00
fmt . Println ( "volume server has been killed" )
2019-11-17 03:40:36 +00:00
2020-09-14 04:25:51 +00:00
// Stop heartbeats
if ! volumeServer . StopHeartbeat ( ) {
2021-07-13 08:29:57 +00:00
volumeServer . SetStopping ( )
2020-09-14 04:25:51 +00:00
glog . V ( 0 ) . Infof ( "stop send heartbeat and wait %d seconds until shutdown ..." , * v . preStopSeconds )
time . Sleep ( time . Duration ( * v . preStopSeconds ) * time . Second )
}
2019-11-17 03:40:36 +00:00
2020-09-14 04:25:51 +00:00
shutdown ( publicHttpDown , clusterHttpServer , grpcS , volumeServer )
stopChan <- true
2020-09-13 19:41:26 +00:00
} )
2019-11-17 03:40:36 +00:00
2020-09-14 04:25:51 +00:00
select {
case <- stopChan :
}
2019-11-17 03:40:36 +00:00
2020-09-13 19:41:26 +00:00
}
2019-11-17 03:40:36 +00:00
2020-09-14 04:25:51 +00:00
func shutdown ( publicHttpDown httpdown . Server , clusterHttpServer httpdown . Server , grpcS * grpc . Server , volumeServer * weed_server . VolumeServer ) {
2019-11-17 03:40:36 +00:00
2020-09-13 19:41:26 +00:00
// firstly, stop the public http service to prevent from receiving new user request
if nil != publicHttpDown {
glog . V ( 0 ) . Infof ( "stop public http server ... " )
if err := publicHttpDown . Stop ( ) ; err != nil {
glog . Warningf ( "stop the public http server failed, %v" , err )
}
}
2014-05-13 07:04:28 +00:00
2020-09-13 19:41:26 +00:00
glog . V ( 0 ) . Infof ( "graceful stop cluster http server ... " )
if err := clusterHttpServer . Stop ( ) ; err != nil {
glog . Warningf ( "stop the cluster http server failed, %v" , err )
2019-11-17 03:40:36 +00:00
}
2020-09-13 19:41:26 +00:00
glog . V ( 0 ) . Infof ( "graceful stop gRPC ..." )
grpcS . GracefulStop ( )
volumeServer . Shutdown ( )
pprof . StopCPUProfile ( )
2019-11-17 03:40:36 +00:00
}
// check whether configure the public port
func ( v VolumeServerOptions ) isSeparatedPublicPort ( ) bool {
return * v . publicPort != * v . port
}
func ( v VolumeServerOptions ) startGrpcService ( vs volume_server_pb . VolumeServerServer ) * grpc . Server {
2021-09-12 09:25:15 +00:00
grpcPort := * v . portGrpc
2021-09-08 02:29:42 +00:00
grpcL , err := util . NewListener ( util . JoinHostPort ( * v . bindIp , grpcPort ) , 0 )
2018-10-11 08:16:33 +00:00
if err != nil {
glog . Fatalf ( "failed to listen on grpc port %d: %v" , grpcPort , err )
}
2020-03-04 08:39:47 +00:00
grpcS := pb . NewGrpcServer ( security . LoadServerTLS ( util . GetViper ( ) , "grpc.volume" ) )
2019-11-17 03:40:36 +00:00
volume_server_pb . RegisterVolumeServerServer ( grpcS , vs )
2018-10-11 08:16:33 +00:00
reflection . Register ( grpcS )
2019-11-17 03:40:36 +00:00
go func ( ) {
if err := grpcS . Serve ( grpcL ) ; err != nil {
glog . Fatalf ( "start gRPC service failed, %s" , err )
2019-02-25 08:43:36 +00:00
}
2019-11-17 03:40:36 +00:00
} ( )
return grpcS
}
func ( v VolumeServerOptions ) startPublicHttpService ( handler http . Handler ) httpdown . Server {
2021-09-08 02:29:42 +00:00
publicListeningAddress := util . JoinHostPort ( * v . bindIp , * v . publicPort )
2020-06-02 07:10:35 +00:00
glog . V ( 0 ) . Infoln ( "Start Seaweed volume server" , util . Version ( ) , "public at" , publicListeningAddress )
2019-11-17 03:40:36 +00:00
publicListener , e := util . NewListener ( publicListeningAddress , time . Duration ( * v . idleConnectionTimeout ) * time . Second )
if e != nil {
glog . Fatalf ( "Volume server listener error:%v" , e )
}
pubHttp := httpdown . HTTP { StopTimeout : 5 * time . Minute , KillTimeout : 5 * time . Minute }
publicHttpDown := pubHttp . Serve ( & http . Server { Handler : handler } , publicListener )
go func ( ) {
if err := publicHttpDown . Wait ( ) ; err != nil {
glog . Errorf ( "public http down wait failed, %v" , err )
2019-02-25 08:43:36 +00:00
}
2019-11-17 03:40:36 +00:00
} ( )
return publicHttpDown
}
func ( v VolumeServerOptions ) startClusterHttpService ( handler http . Handler ) httpdown . Server {
var (
certFile , keyFile string
)
if viper . GetString ( "https.volume.key" ) != "" {
certFile = viper . GetString ( "https.volume.cert" )
keyFile = viper . GetString ( "https.volume.key" )
}
2021-09-08 02:29:42 +00:00
listeningAddress := util . JoinHostPort ( * v . bindIp , * v . port )
2020-06-02 07:10:35 +00:00
glog . V ( 0 ) . Infof ( "Start Seaweed volume server %s at %s" , util . Version ( ) , listeningAddress )
2019-11-17 03:40:36 +00:00
listener , e := util . NewListener ( listeningAddress , time . Duration ( * v . idleConnectionTimeout ) * time . Second )
if e != nil {
glog . Fatalf ( "Volume server listener error:%v" , e )
2012-08-24 05:46:54 +00:00
}
2018-10-11 07:04:31 +00:00
2019-11-17 03:40:36 +00:00
httpDown := httpdown . HTTP {
2022-02-14 16:38:24 +00:00
KillTimeout : time . Minute ,
2022-02-14 16:42:27 +00:00
StopTimeout : 30 * time . Second ,
2019-11-17 03:40:36 +00:00
CertFile : certFile ,
KeyFile : keyFile }
2022-03-14 23:22:52 +00:00
httpS := & http . Server { Handler : handler }
if viper . GetString ( "https.volume.ca" ) != "" {
clientCertFile := viper . GetString ( "https.volume.ca" )
httpS . TLSConfig = security . LoadClientTLSHTTP ( clientCertFile )
}
clusterHttpServer := httpDown . Serve ( httpS , listener )
2019-11-17 03:40:36 +00:00
go func ( ) {
if e := clusterHttpServer . Wait ( ) ; e != nil {
glog . Fatalf ( "Volume server fail to serve: %v" , e )
}
} ( )
return clusterHttpServer
2012-08-07 08:29:22 +00:00
}
2021-03-05 10:29:38 +00:00
func ( v VolumeServerOptions ) startTcpService ( volumeServer * weed_server . VolumeServer ) {
2021-09-13 05:47:52 +00:00
listeningAddress := util . JoinHostPort ( * v . bindIp , * v . port + 20000 )
2021-03-05 10:29:38 +00:00
glog . V ( 0 ) . Infoln ( "Start Seaweed volume server" , util . Version ( ) , "tcp at" , listeningAddress )
listener , e := util . NewListener ( listeningAddress , 0 )
if e != nil {
glog . Fatalf ( "Volume server listener error on %s:%v" , listeningAddress , e )
}
defer listener . Close ( )
for {
c , err := listener . Accept ( )
if err != nil {
fmt . Println ( err )
return
}
go volumeServer . HandleTcpConnection ( c )
}
}