From ae9a7bc41f127a6aad59e60c79709623a7c41e57 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Mon, 4 May 2015 13:03:53 +0200 Subject: protocol: increase default group-cache-timeout to 300 seconds sssd uses 300 seconds by default too. There is no need to overload sssd with requests that it would have cached. Cherry picked from commit 34833364e9839f0036bccd58ec0a8a963e69263e: > BUG: 1215187 > Change-Id: I3f04ea8cc90180d863253a9f46d62b71810a7b34 > Signed-off-by: Niels de Vos > Reviewed-on: http://review.gluster.org/10371 > Tested-by: Gluster Build System > Reviewed-by: Kaleb KEITHLEY > Reviewed-by: Vijay Bellur Change-Id: I3f04ea8cc90180d863253a9f46d62b71810a7b34 BUG: 1215189 Signed-off-by: Niels de Vos Reviewed-on: http://review.gluster.org/10523 Tested-by: Gluster Build System Tested-by: NetBSD Build System Reviewed-by: Vijay Bellur --- xlators/mount/fuse/src/fuse-bridge.c | 2 +- xlators/nfs/server/src/nfs.c | 2 +- xlators/protocol/server/src/server.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'xlators') diff --git a/xlators/mount/fuse/src/fuse-bridge.c b/xlators/mount/fuse/src/fuse-bridge.c index 48b68f7f91b..871059d5697 100644 --- a/xlators/mount/fuse/src/fuse-bridge.c +++ b/xlators/mount/fuse/src/fuse-bridge.c @@ -5687,7 +5687,7 @@ struct volume_options options[] = { }, { .key = {"gid-timeout"}, .type = GF_OPTION_TYPE_INT, - .default_value = "2" + .default_value = "300" }, { .key = {"acl"}, .type = GF_OPTION_TYPE_BOOL, diff --git a/xlators/nfs/server/src/nfs.c b/xlators/nfs/server/src/nfs.c index be84a1b649e..85af465ce7b 100644 --- a/xlators/nfs/server/src/nfs.c +++ b/xlators/nfs/server/src/nfs.c @@ -1962,7 +1962,7 @@ struct volume_options options[] = { .type = GF_OPTION_TYPE_INT, .min = 0, .max = 3600, - .default_value = "5", + .default_value = "300", .description = "Number of seconds to cache auxiliary-GID data, when " OPT_SERVER_AUX_GIDS " is set." }, diff --git a/xlators/protocol/server/src/server.c b/xlators/protocol/server/src/server.c index aea88b623cc..6f3d39de869 100644 --- a/xlators/protocol/server/src/server.c +++ b/xlators/protocol/server/src/server.c @@ -1308,7 +1308,7 @@ struct volume_options options[] = { }, { .key = {"gid-timeout"}, .type = GF_OPTION_TYPE_INT, - .default_value = "2", + .default_value = "300", .description = "Timeout in seconds for the cached groups to expire." }, { .key = {"event-threads"}, -- cgit