|
|
74ca47 |
From c14b2d88497724c4e19e5fae89bb40c95a61e1cb Mon Sep 17 00:00:00 2001
|
|
|
74ca47 |
From: Mark Reynolds <mreynolds@redhat.com>
|
|
|
74ca47 |
Date: Thu, 30 Mar 2017 15:26:00 -0400
|
|
|
74ca47 |
Subject: [PATCH] Issue 49035 - dbmon.sh shows pages-in-use that exceeds the
|
|
|
74ca47 |
cache size
|
|
|
74ca47 |
|
|
|
74ca47 |
Bug Description: dbmon shows negative free cache stats because the pages-in-use exceeds
|
|
|
74ca47 |
the expected size of the cache. This is because on caches smaller
|
|
|
74ca47 |
than 500mb, libdb automatically increases the size by ~25%. The tool
|
|
|
74ca47 |
is only checking the configured db cache size, and in this case its
|
|
|
74ca47 |
actaully larger than what was conigured in dse.ldif.
|
|
|
74ca47 |
|
|
|
74ca47 |
Fix Description: dbmon.sh should use the libdb's "cache size in bytes", instead of
|
|
|
74ca47 |
nsslapd-dbcachesize - as it could be different.
|
|
|
74ca47 |
|
|
|
74ca47 |
https://pagure.io/389-ds-base/issue/49035
|
|
|
74ca47 |
|
|
|
74ca47 |
Reviewed by: nhosoi & wibrown (Thanks!!)
|
|
|
74ca47 |
---
|
|
|
74ca47 |
ldap/admin/src/scripts/dbmon.sh.in | 2 +-
|
|
|
74ca47 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
74ca47 |
|
|
|
74ca47 |
diff --git a/ldap/admin/src/scripts/dbmon.sh.in b/ldap/admin/src/scripts/dbmon.sh.in
|
|
|
74ca47 |
index 4ee6adc..46796e2 100644
|
|
|
74ca47 |
--- a/ldap/admin/src/scripts/dbmon.sh.in
|
|
|
74ca47 |
+++ b/ldap/admin/src/scripts/dbmon.sh.in
|
|
|
74ca47 |
@@ -47,7 +47,7 @@ parseldif() {
|
|
|
74ca47 |
}
|
|
|
74ca47 |
/^[^ ]|^$/ {origline = $0; $0 = unwrapline; unwrapline = origline}
|
|
|
74ca47 |
/^ / {sub(/^ /, ""); unwrapline = unwrapline $0; next}
|
|
|
74ca47 |
- /^nsslapd-dbcachesize/ { dbcachesize=$2 }
|
|
|
74ca47 |
+ /^nsslapd-db-cache-size-bytes/ { dbcachesize=$2 }
|
|
|
74ca47 |
/^nsslapd-db-page-size/ { pagesize=$2 }
|
|
|
74ca47 |
/^dbcachehitratio/ { dbhitratio=$2 }
|
|
|
74ca47 |
/^dbcachepagein/ { dbcachepagein=$2 }
|
|
|
74ca47 |
--
|
|
|
74ca47 |
2.9.3
|
|
|
74ca47 |
|