summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmar Tumballi <amarts@redhat.com>2012-11-05 16:57:04 +0530
committerVijay Bellur <vbellur@redhat.com>2012-12-12 00:22:17 -0500
commita687a4d163c8f3308b96907ed9dd22820db0916b (patch)
tree72721636cce8877c48eef9b72e142a0aed7804b2
parent4ccf1d0bafd4655478524398fcf767c177e4e296 (diff)
fuse: make the default background queue length as 512
should help VM hosting performance when there are more VMs are hosted from a single data store. Change-Id: I0f2df352e410e10845cfade5f27fe1b0b5b06250 Signed-off-by: Amar Tumballi <amarts@redhat.com> BUG: 859589 Reviewed-on: https://code.engineering.redhat.com/gerrit/1504 Reviewed-by: Vijay Bellur <vbellur@redhat.com> Tested-by: Vijay Bellur <vbellur@redhat.com> Reviewed-on: https://code.engineering.redhat.com/gerrit/1883
-rw-r--r--xlators/mount/fuse/src/fuse-bridge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/mount/fuse/src/fuse-bridge.c b/xlators/mount/fuse/src/fuse-bridge.c
index d458f94426c..102216201ec 100644
--- a/xlators/mount/fuse/src/fuse-bridge.c
+++ b/xlators/mount/fuse/src/fuse-bridge.c
@@ -4770,13 +4770,13 @@ struct volume_options options[] = {
},
{ .key = {"background-qlen"},
.type = GF_OPTION_TYPE_INT,
- .default_value = "64",
+ .default_value = "512",
.min = 16,
.max = (64 * GF_UNIT_KB),
},
{ .key = {"congestion-threshold"},
.type = GF_OPTION_TYPE_INT,
- .default_value = "48",
+ .default_value = "384",
.min = 12,
.max = (64 * GF_UNIT_KB),
},