Increase default initialDelaySeconds for Zookeeper probes to workaround ZOOKEEPER-3988 (#202)

- When TLS is enabled for Zookeeper, NettyServerCnxnFactory will be used.
  It contains the issue https://github.com/apache/pulsar/issues/11070 /
  https://issues.apache.org/jira/browse/ZOOKEEPER-3988
  - as a workaround, increase the initialDelaySeconds from 10 to 20 to
    reduce the likely hood of ZOOKEEPER-3988
This commit is contained in:
Lari Hotari 2022-01-18 18:38:29 +02:00 committed by GitHub
parent a27ec0aebf
commit 63cbdfe687
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -318,19 +318,19 @@ zookeeper:
liveness: liveness:
enabled: true enabled: true
failureThreshold: 10 failureThreshold: 10
initialDelaySeconds: 10 initialDelaySeconds: 20
periodSeconds: 30 periodSeconds: 30
timeoutSeconds: 5 timeoutSeconds: 5
readiness: readiness:
enabled: true enabled: true
failureThreshold: 10 failureThreshold: 10
initialDelaySeconds: 10 initialDelaySeconds: 20
periodSeconds: 30 periodSeconds: 30
timeoutSeconds: 5 timeoutSeconds: 5
startup: startup:
enabled: false enabled: false
failureThreshold: 30 failureThreshold: 30
initialDelaySeconds: 10 initialDelaySeconds: 20
periodSeconds: 30 periodSeconds: 30
timeoutSeconds: 5 timeoutSeconds: 5
affinity: affinity: