diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-04-23 14:14:28 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-04-23 14:14:28 -0700 |
| commit | 913aa0f14e96033bb958386df8ebdd39d80c9ac1 (patch) | |
| tree | 609eceaa3fb300d6dc186798ff312e40226feccc /weed/command/mount.go | |
| parent | 662b5d0cf7caade0a2b6acd3442642036b910c72 (diff) | |
| download | seaweedfs-913aa0f14e96033bb958386df8ebdd39d80c9ac1.tar.xz seaweedfs-913aa0f14e96033bb958386df8ebdd39d80c9ac1.zip | |
mount: default to enable asyncMetaDataCaching
Diffstat (limited to 'weed/command/mount.go')
| -rw-r--r-- | weed/command/mount.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/mount.go b/weed/command/mount.go index 75ea485d3..21c8e7744 100644 --- a/weed/command/mount.go +++ b/weed/command/mount.go @@ -48,7 +48,7 @@ func init() { mountCpuProfile = cmdMount.Flag.String("cpuprofile", "", "cpu profile output file") mountMemProfile = cmdMount.Flag.String("memprofile", "", "memory profile output file") mountOptions.outsideContainerClusterMode = cmdMount.Flag.Bool("outsideContainerClusterMode", false, "allows other users to access the file system") - mountOptions.asyncMetaDataCaching = cmdMount.Flag.Bool("asyncMetaDataCaching", false, "<wip> async meta data caching") + mountOptions.asyncMetaDataCaching = cmdMount.Flag.Bool("asyncMetaDataCaching", true, "async meta data caching. this feature will be permanent and this option will be removed.") } var cmdMount = &Command{ |
