mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
76d75f8c81
Signed-off-by: Martin Schwenke <martin@meltin.net> (This used to be ctdb commit f94897ef9504c144937409688fa7a646e0b0ceae)
26 lines
618 B
Python
Executable File
26 lines
618 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
# 2 IP groups, across 2 nodes, with each group on different
|
|
# interfaces. 4 addresses per group. A nice little canonical 2 node
|
|
# configuration.
|
|
|
|
from ctdb_takeover import Cluster, Node, process_args
|
|
|
|
process_args()
|
|
|
|
addresses1 = ['192.168.1.%d' % n for n in range(1, 5)]
|
|
addresses2 = ['192.168.2.%d' % n for n in range(1, 5)]
|
|
|
|
# Try detecting imbalance with square root of number of nodes? Or
|
|
# just with a parameter indicating how unbalanced you're willing to
|
|
# accept...
|
|
|
|
c = Cluster()
|
|
|
|
for i in range(2):
|
|
c.add_node(Node([addresses1, addresses2]))
|
|
|
|
c.recover()
|
|
|
|
c.random_iterations()
|