aboutsummaryrefslogtreecommitdiff
path: root/weed/server/volume_server.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2022-09-16 23:54:39 -0700
committerchrislu <chris.lu@gmail.com>2022-09-16 23:54:39 -0700
commit3fc261d27c90fc06c1d555dd998d7535b844a746 (patch)
treeb17d0f9af6a7e8812e40d2e4aae3f3afaef373b3 /weed/server/volume_server.go
parent06748f27714d51235ec8c9b41f91eb6f0545130e (diff)
parent5d87ad72d8ee90146d2f6b619d54c6ac0ba4b868 (diff)
downloadseaweedfs-3fc261d27c90fc06c1d555dd998d7535b844a746.tar.xz
seaweedfs-3fc261d27c90fc06c1d555dd998d7535b844a746.zip
Merge branch 'master' of https://github.com/seaweedfs/seaweedfs
Diffstat (limited to 'weed/server/volume_server.go')
-rw-r--r--weed/server/volume_server.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/weed/server/volume_server.go b/weed/server/volume_server.go
index 8bf50ce45..07bb0b9ee 100644
--- a/weed/server/volume_server.go
+++ b/weed/server/volume_server.go
@@ -29,6 +29,7 @@ type VolumeServer struct {
inFlightDownloadDataLimitCond *sync.Cond
inflightUploadDataTimeout time.Duration
hasSlowRead bool
+ readBufferSize int
SeedMasterNodes []pb.ServerAddress
currentMaster pb.ServerAddress
@@ -66,6 +67,7 @@ func NewVolumeServer(adminMux, publicMux *http.ServeMux, ip string,
concurrentDownloadLimit int64,
inflightUploadDataTimeout time.Duration,
hasSlowRead bool,
+ readBufferSize int,
) *VolumeServer {
v := util.GetViper()
@@ -96,6 +98,7 @@ func NewVolumeServer(adminMux, publicMux *http.ServeMux, ip string,
concurrentDownloadLimit: concurrentDownloadLimit,
inflightUploadDataTimeout: inflightUploadDataTimeout,
hasSlowRead: hasSlowRead,
+ readBufferSize: readBufferSize,
}
vs.SeedMasterNodes = masterNodes