mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-10-21 07:17:25 +08:00
volume: address "unaligned 64-bit atomic operation"
fix https://github.com/chrislusf/seaweedfs/issues/2177
This commit is contained in:
@@ -17,6 +17,10 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type VolumeServer struct {
|
type VolumeServer struct {
|
||||||
|
inFlightDataSize int64
|
||||||
|
concurrentUploadLimit int64
|
||||||
|
inFlightDataLimitCond *sync.Cond
|
||||||
|
|
||||||
SeedMasterNodes []string
|
SeedMasterNodes []string
|
||||||
currentMaster string
|
currentMaster string
|
||||||
pulseSeconds int
|
pulseSeconds int
|
||||||
@@ -35,10 +39,6 @@ type VolumeServer struct {
|
|||||||
fileSizeLimitBytes int64
|
fileSizeLimitBytes int64
|
||||||
isHeartbeating bool
|
isHeartbeating bool
|
||||||
stopChan chan bool
|
stopChan chan bool
|
||||||
|
|
||||||
inFlightDataSize int64
|
|
||||||
inFlightDataLimitCond *sync.Cond
|
|
||||||
concurrentUploadLimit int64
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewVolumeServer(adminMux, publicMux *http.ServeMux, ip string,
|
func NewVolumeServer(adminMux, publicMux *http.ServeMux, ip string,
|
||||||
|
Reference in New Issue
Block a user