add large disk support
This commit is contained in:
@@ -70,7 +70,7 @@ func runMaster(cmd *Command, args []string) bool {
|
||||
if *masterWhiteListOption != "" {
|
||||
masterWhiteList = strings.Split(*masterWhiteListOption, ",")
|
||||
}
|
||||
if *volumeSizeLimitMB > 30*1000 {
|
||||
if *volumeSizeLimitMB > util.VolumeSizeLimitGB*1000 {
|
||||
glog.Fatalf("volumeSizeLimitMB should be smaller than 30000")
|
||||
}
|
||||
|
||||
|
||||
@@ -140,7 +140,7 @@ func runServer(cmd *Command, args []string) bool {
|
||||
|
||||
folders := strings.Split(*volumeDataFolders, ",")
|
||||
|
||||
if *masterVolumeSizeLimitMB > 30*1000 {
|
||||
if *masterVolumeSizeLimitMB > util.VolumeSizeLimitGB*1000 {
|
||||
glog.Fatalf("masterVolumeSizeLimitMB should be less than 30000")
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
package util
|
||||
|
||||
const (
|
||||
VERSION = "1.28"
|
||||
import (
|
||||
"fmt"
|
||||
)
|
||||
|
||||
var (
|
||||
VERSION = fmt.Sprintf("%s %d.%d", sizeLimit, 1, 28)
|
||||
)
|
||||
|
||||
8
weed/util/constants_4bytes.go
Normal file
8
weed/util/constants_4bytes.go
Normal file
@@ -0,0 +1,8 @@
|
||||
// +build !5BytesOffset
|
||||
|
||||
package util
|
||||
|
||||
const (
|
||||
sizeLimit = "30GB"
|
||||
VolumeSizeLimitGB = 30
|
||||
)
|
||||
8
weed/util/constants_5bytes.go
Normal file
8
weed/util/constants_5bytes.go
Normal file
@@ -0,0 +1,8 @@
|
||||
// +build 5BytesOffset
|
||||
|
||||
package util
|
||||
|
||||
const (
|
||||
sizeLimit = "8000GB"
|
||||
VolumeSizeLimitGB = 8000
|
||||
)
|
||||
Reference in New Issue
Block a user