एक चिड़ियाघरकीपर कोरम जिसमें तीन चिड़ियाघरकीपर सर्वर शामिल हैं, बनाया गया है।
zoo.cfg
सभी तीन चिड़ियाघर संचालक सर्वर दिखता है पर स्थित इस प्रकार है:
maxClientCnxns=50
# The number of milliseconds of each tick
tickTime=2000
# The number of ticks that the initial
# synchronization phase can take
initLimit=10
# The number of ticks that can pass between
# sending a request and getting an acknowledgement
syncLimit=5
# the directory where the snapshot is stored.
dataDir=/var/lib/zookeeper
# the port at which the clients will connect
clientPort=2181
server.1=<ip-address-1>:2888:3888
server.2=<ip-address-2>:2888:3888
server.3=<ip-address-3>:2888:3888
विश्लेषण
यह स्पष्ट है कि तीन चिड़ियाघरकीपर सर्वरों में से एक Leader
और अन्य बन जाएंगे Followers
। यदि Leader
चिड़ियाघरकीपर सर्वर बंद कर दिया गया है तो Leader
चुनाव फिर से शुरू होगा। उद्देश्य यह जांचना है कि क्या एक और ज़ूकेपर सर्वर बन जाएगा Leader
यदि Leader
सर्वर बंद हो गया है।
सवाल
यह सुनिश्चित करने के लिए कि एक ZooKeeper सर्वर एक लीडर या एक अनुयायी है, क्या कमांड जारी करने की आवश्यकता है?
standalone