From a687a4d163c8f3308b96907ed9dd22820db0916b Mon Sep 17 00:00:00 2001 From: Amar Tumballi Date: Mon, 5 Nov 2012 16:57:04 +0530 Subject: 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 BUG: 859589 Reviewed-on: https://code.engineering.redhat.com/gerrit/1504 Reviewed-by: Vijay Bellur Tested-by: Vijay Bellur Reviewed-on: https://code.engineering.redhat.com/gerrit/1883 --- xlators/mount/fuse/src/fuse-bridge.c | 4 ++-- 1 file 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), }, -- cgit