From 3ff8ec02830b5fd2f88e33748a2bfd9f066a1285 Mon Sep 17 00:00:00 2001 From: Amitay Isaacs Date: Tue, 15 Jul 2014 16:41:31 +1000 Subject: ctdb-locking: Increase number of lock processes per database to 200 This was the original limit in the older versions of CTDB. Signed-off-by: Amitay Isaacs Reviewed-by: Volker Lendecke --- ctdb/server/ctdb_tunables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctdb/server/ctdb_tunables.c b/ctdb/server/ctdb_tunables.c index 38e0bb2a63..069958653f 100644 --- a/ctdb/server/ctdb_tunables.c +++ b/ctdb/server/ctdb_tunables.c @@ -83,7 +83,7 @@ static const struct { { "NoIPHostOnAllDisabled", 0, offsetof(struct ctdb_tunable, no_ip_host_on_all_disabled), false }, { "Samba3AvoidDeadlocks", 0, offsetof(struct ctdb_tunable, samba3_hack), false }, { "TDBMutexEnabled", 0, offsetof(struct ctdb_tunable, mutex_enabled), false }, - { "LockProcessesPerDB", 100, offsetof(struct ctdb_tunable, lock_processes_per_db), false }, + { "LockProcessesPerDB", 200, offsetof(struct ctdb_tunable, lock_processes_per_db), false }, }; /* -- cgit