From eaea860b613f6bc5d1801b92075040c3da9dfb6a Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 1 Sep 2023 15:42:26 -0400 Subject: [PATCH] Lower autopurge interval to 1 hour --- roles/pvc/templates/zookeeper/zoo.cfg.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/pvc/templates/zookeeper/zoo.cfg.j2 b/roles/pvc/templates/zookeeper/zoo.cfg.j2 index 1ce5cfa..0c808e9 100644 --- a/roles/pvc/templates/zookeeper/zoo.cfg.j2 +++ b/roles/pvc/templates/zookeeper/zoo.cfg.j2 @@ -15,9 +15,9 @@ snapCount=10000 snapSizeLimitInKb=2097152 # Configure a max of 200 client connections maxClientCnxns=200 -# Auto purge: keep 3 snapshots and evaluate every 4 hours +# Auto purge: keep 3 snapshots and evaluate every hours autopurge.snapRetainCount=3 -autopurge.purgeInterval=4 +autopurge.purgeInterval=1 # Listen on port 2181 on the cluster IP clientPort=2181