Hi, I am trying to put the `autopurge` config for...
# troubleshooting
a
Hi, I am trying to put the
autopurge
config for zookeeper in pinot-release.yaml file but it doesn't seem working. Even after adding the purgeInterval =1 and snapRetainCount = 5, it's always
autopurge.snapRetainCount=3 autopurge.purgeInterval=0
Can anyone please help? below is the .yaml I am using for zookeeper -
Copy code
zookeeper:
    ## If true, install the Zookeeper chart alongside Pinot
    ## ref: <https://github.com/kubernetes/charts/tree/master/incubator/zookeeper>
      enabled: true
      urlOverride: "my-zookeeper:2181/pinot"
      port: 2181
      replicaCount: 3
      autopurge:
        purgeInterval: 1
        snapRetainCount: 5
      env:
        ## The JVM heap size to allocate to Zookeeper
        ZK_HEAP_SIZE: "256M"
        #ZOO_MY_ID: 1
      persistence:
        enabled: true
      image:
        PullPolicy: "IfNotPresent"
      resources:
        requests:
          cpu: 200m
          memory: 256Mi
        limits:
          cpu: 500m
          memory: 1Gi
Resolved !! Just to help others, I added as below
ZK_PURGE_INTERVAL: "1"
ZK_SNAP_RETAIN_COUNT: "3"
x
oh, can you help submit a PR to fix this
Thanks!
a
sure Xiang, Thanks!