tooz/examples/group_membership.py

15 lines
294 B
Python

from tooz import coordination
coordinator = coordination.get_coordinator('zookeeper', b'host-1')
coordinator.start()
# Create a group
request = coordinator.create_group(b"my group")
request.get()
# Join a group
request = coordinator.join_group(b"my group")
request.get()
coordinator.stop()