This is an automated email from the git hooks/post-receive script.
tbordaz pushed a change to branch 389-ds-base-1.3.6 in repository 389-ds-base.
from 17aee5e additional fix for 49287: handle readonly replica new ef43dd8 Ticket 49313 - Change the retrochangelog default cache size
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: ldap/servers/plugins/retrocl/retrocl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
This is an automated email from the git hooks/post-receive script.
tbordaz pushed a commit to branch 389-ds-base-1.3.6 in repository 389-ds-base.
commit ef43dd8e78ac667bdd4ec35315fcf644b064d84d Author: Thierry Bordaz tbordaz@redhat.com Date: Thu Jul 27 18:10:05 2017 +0200
Ticket 49313 - Change the retrochangelog default cache size
Bug Description: Default retroCL backend entry cache size is 2Mb. It has been reported in many deployments that DB corruption could be prevented by increasing entry cache to 200Mb. There is no identified reproducible steps to debug this DB corruption. So to prevent this problem we are increasing the entry cache
Fix Description: Set default cn=changelog cache to 200Mb (based on production cases) An other option would be to set a maximum number of entries but as we do not know if it works to prevent DB corruption, let's prefere entry cache size
https://pagure.io/389-ds-base/issue/49313
Reviewed by: William Brown
Platforms tested: F23
Flag Day: no
Doc impact: no --- ldap/servers/plugins/retrocl/retrocl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ldap/servers/plugins/retrocl/retrocl.h b/ldap/servers/plugins/retrocl/retrocl.h index 6963d4b..eef1a17 100644 --- a/ldap/servers/plugins/retrocl/retrocl.h +++ b/ldap/servers/plugins/retrocl/retrocl.h @@ -58,7 +58,7 @@ typedef struct _cnumRet { #else #define RETROCL_DLL_DEFAULT_THREAD_STACKSIZE 131072L #endif -#define RETROCL_BE_CACHEMEMSIZE "2097152" +#define RETROCL_BE_CACHEMEMSIZE "209715200" #define RETROCL_BE_CACHESIZE "-1" #define RETROCL_PLUGIN_NAME "DSRetroclPlugin"
389-commits@lists.fedoraproject.org