diff options
| author | Chris Lu <chrislusf@users.noreply.github.com> | 2020-11-11 22:09:41 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-11 22:09:41 -0800 |
| commit | 827930e2492280c80a1e4dbe2a4e07bf4c7447e5 (patch) | |
| tree | 8de75aa01a8cec976c546bc64119b4a09b0f3ea8 /weed/command/filer.go | |
| parent | 4300ca814219105b5900ebeea28ee2d6a4ca34c2 (diff) | |
| parent | 0880aff224976ba1a22f7f1d815a35f2556165dd (diff) | |
| download | seaweedfs-827930e2492280c80a1e4dbe2a4e07bf4c7447e5.tar.xz seaweedfs-827930e2492280c80a1e4dbe2a4e07bf4c7447e5.zip | |
Merge pull request #1610 from kmlebedev/prefer_read_in_this_dc
prefer to read from volumes in this data center
Diffstat (limited to 'weed/command/filer.go')
| -rw-r--r-- | weed/command/filer.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/filer.go b/weed/command/filer.go index 1ea334e61..017427335 100644 --- a/weed/command/filer.go +++ b/weed/command/filer.go @@ -59,7 +59,7 @@ func init() { f.disableDirListing = cmdFiler.Flag.Bool("disableDirListing", false, "turn off directory listing") f.maxMB = cmdFiler.Flag.Int("maxMB", 32, "split files larger than the limit") f.dirListingLimit = cmdFiler.Flag.Int("dirListLimit", 100000, "limit sub dir listing size") - f.dataCenter = cmdFiler.Flag.String("dataCenter", "", "prefer to write to volumes in this data center") + f.dataCenter = cmdFiler.Flag.String("dataCenter", "", "prefer to read and write to volumes in this data center") f.rack = cmdFiler.Flag.String("rack", "", "prefer to write to volumes in this rack") f.disableHttp = cmdFiler.Flag.Bool("disableHttp", false, "disable http request, only gRpc operations are allowed") f.cipher = cmdFiler.Flag.Bool("encryptVolumeData", false, "encrypt data on volume servers") |
