File: restart_cluster_rolling.inc

package info (click to toggle)
percona-xtrabackup 2.2.3-2.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 293,260 kB
  • ctags: 146,881
  • sloc: cpp: 1,051,960; ansic: 570,217; java: 54,595; perl: 53,495; pascal: 44,194; sh: 27,826; yacc: 15,314; python: 12,142; xml: 7,848; sql: 4,125; makefile: 1,459; awk: 785; lex: 758
file content (32 lines) | stat: -rw-r--r-- 1,359 bytes parent folder | download
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
32
##
## Restarts a NDB cluster by rolling node restart
##
## Parameters:
##   $waiter_timeout_start      - How long wo tait for a single node to start, default from restart_node.inc
##   $waiter_timeout_stop       - How long to wait for a single node to stop, default from restart_node.inc
##   $MTR_NDB_FIRST_NDBD_NODEID - The first node id of the NDBD data nodes
##   $MTR_NDB_LAST_NDBD_NODEID  - The last node id of the NDBD data nodes
##
## This include file has as a prerequisite that the NDBD node ids is in a numbered range without
## holes which starts with MTR_NDB_FIRST_NDBD_NODEID and ends with $MTR_NDB_LAST_NDBD_NODEID.
##
## The last two parameters are normally provided by
##   --source suite/ndb/include/ndb_info.inc
##
## In addition, $NDB_CONNECTSTRING, $NDB_MGM, $NDB_TOOLS_DIR and $NDB_TOOLS_OUTPUT
## must be set (they are normally proivided by MTR).
##

--echo # Rolling system restart from node $MTR_NDB_FIRST_NDBD_NODEID to node $MTR_NDB_LAST_NDBD_NODEID:
--append_file $NDB_TOOLS_OUTPUT
# Rolling system restart:
EOF

--let $ndb_node_id= $MTR_NDB_LAST_NDBD_NODEID
while (`SELECT $ndb_node_id >= $MTR_NDB_FIRST_NDBD_NODEID`) {
  --echo # Restarting node $ndb_node_id as part of rolling system restart
  --source suite/ndb/include/restart_node.inc
  --dec $ndb_node_id
}
--let $ndb_node_id=
--exec $NDB_MGM -e "show" >> $NDB_TOOLS_OUTPUT