From 7db671facf6d6267b2f8b42fd5e473f4d51ec0d5 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 23 May 2008 16:28:01 -0700 Subject: [PATCH] client: larger default cache --- src/config.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config.cc b/src/config.cc index 6891dba0616a9..ca18e3918bebf 100644 --- a/src/config.cc +++ b/src/config.cc @@ -268,9 +268,9 @@ md_config_t g_conf = { // --- objectcacher --- client_oc: true, - client_oc_size: 1024*1024* 10, // MB * n - client_oc_max_dirty: 1024*1024* 10, // MB * n (dirty OR tx) - client_oc_max_sync_write: 128*1024, // synx writes >= this use wrlock + client_oc_size: 1024*1024* 16, // MB * n + client_oc_max_dirty: 1024*1024* 12, // MB * n (dirty OR tx) + client_oc_max_sync_write: 128*1024, // sync writes >= this use wrlock // --- objecter --- objecter_buffer_uncommitted: true, // this must be true for proper failure handling -- 2.39.5