File: node_group_extra.py

package info (click to toggle)
ctdb 1.12%2Bgit20120201-5
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 6,656 kB
  • sloc: ansic: 61,736; sh: 18,367; xml: 3,887; python: 1,220; makefile: 554; perl: 319; awk: 118
file content (31 lines) | stat: -rwxr-xr-x 762 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env python

# This example demonstrates a node group configuration.  Is it meant
# to be the same as node_group_simple.py, but with a couple of nodes
# added later, so they are listed after the management node.

# When run with deterministic IPs (use "-d" to show the problem) it
# does many gratuitous IP reassignments.

from ctdb_takeover import Cluster, Node, process_args

process_args()

addresses1 = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H'] + ['P', 'Q', 'R', 'S', 'T', 'U']
addresses2 = ['I', 'J', 'K', 'L']

c = Cluster()

for i in range(4):
    c.add_node(Node(addresses1))

for i in range(3):
    c.add_node(Node(addresses2))

c.add_node(Node([]))
c.add_node(Node(addresses1))
c.add_node(Node(addresses2))

c.recover()

c.random_iterations()