diff options
author | Pranith Kumar K <pkarampu@redhat.com> | 2013-03-27 19:08:52 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2013-05-21 01:16:14 -0700 |
commit | 135a343605f3a015837cb44045a669d9ccf0dbd8 (patch) | |
tree | c36161733f02f867f304d1673e56248924c70953 /xlators/mgmt/glusterd | |
parent | 7ecc172ade1b8c42086b53084c509d217c82229a (diff) |
mgmt/glusterd: Enable write-behind in nfs
We observed that the number of write requests thus inodelks
are increasing very rapidly to thousands without write-behind
in the graph.
Change-Id: I901a6a820eb7b21b413d33e1a0a3420c7f4746a8
BUG: 928341
Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
Reviewed-on: http://review.gluster.org/4736
Reviewed-by: Anand Avati <avati@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Diffstat (limited to 'xlators/mgmt/glusterd')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-volgen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-volgen.c b/xlators/mgmt/glusterd/src/glusterd-volgen.c index 8f182e596ff..3d5d109e29d 100644 --- a/xlators/mgmt/glusterd/src/glusterd-volgen.c +++ b/xlators/mgmt/glusterd/src/glusterd-volgen.c @@ -206,7 +206,7 @@ static struct volopt_map_entry glusterd_volopt_map[] = { {"performance.stat-prefetch", "performance/md-cache", "!perf", "on", NO_DOC, 0, 1}, {"performance.client-io-threads", "performance/io-threads", "!perf", "off", NO_DOC, 0, 1}, - {"performance.nfs.write-behind", "performance/write-behind", "!nfsperf", "off", NO_DOC, 0, 1}, + {"performance.nfs.write-behind", "performance/write-behind", "!nfsperf", "on", NO_DOC, 0, 1}, {"performance.nfs.read-ahead", "performance/read-ahead", "!nfsperf", "off", NO_DOC, 0, 1}, {"performance.nfs.io-cache", "performance/io-cache", "!nfsperf", "off", NO_DOC, 0, 1}, {"performance.nfs.quick-read", "performance/quick-read", "!nfsperf", "off", NO_DOC, 0, 1}, |