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:
parent
a27ec0aebf
commit
63cbdfe687
@ -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:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user