pvc-ansible/roles/pvc/templates/zookeeper/zoo.cfg.j2

16 lines
287 B
Plaintext
Raw Normal View History

2019-06-09 00:11:06 -04:00
# PVC Zookeeper configuration
# {{ ansible_managed }}
tickTime=1000
initLimit=10
syncLimit=5
dataDir=/var/lib/zookeeper
2019-08-05 13:13:25 -04:00
autopurge.purgeInterval=72
2019-06-09 00:11:06 -04:00
clientPort=2181
{% for node in pvc_nodes if node.is_coordinator %}
server.{{ node.node_id }}={{ node.hostname }}:2888:3888
{% endfor %}