MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
restart_cluster.inc
1 ##
2 ## Restarts a NDB cluster
3 ##
4 ## Parameters:
5 ## $waiter_timeout_start - How long wo tait for a cluster to start, default 600 seconds
6 ## $waiter_timeout_stop - How long to wait for a cluster to stop, default 30 seconds
7 ##
8 ## In addition, $NDB_CONNECTSTRING, $NDB_MGM, $NDB_TOOLS_DIR and $NDB_TOOLS_OUTPUT
9 ## must be set (they are normally proivided by MTR).
10 ##
11 
12 # Default values
13 if (`SELECT LENGTH('$waiter_timeout_start') = 0`) {
14  let $waiter_timeout_start= 600;
15 }
16 if (`SELECT LENGTH('$waiter_timeout_stop') = 0`) {
17  let $waiter_timeout_stop= 30;
18 }
19 
20 --echo # System restart:
21 --append_file $NDB_TOOLS_OUTPUT
22 # System restart:
23 EOF
24 
25 --exec $NDB_MGM -e "show" >> $NDB_TOOLS_OUTPUT
26 --exec $NDB_MGM -e "all restart -n" >> $NDB_TOOLS_OUTPUT
27 --exec $NDB_MGM -e "show" >> $NDB_TOOLS_OUTPUT
28 --exec $NDB_TOOLS_DIR/ndb_waiter --no-defaults --ndb-connectstring="$NDB_CONNECTSTRING" --not-started --timeout=$waiter_timeout_stop >> $NDB_TOOLS_OUTPUT
29 --exec $NDB_MGM -e "all start" >> $NDB_TOOLS_OUTPUT
30 --exec $NDB_TOOLS_DIR/ndb_waiter --no-defaults --ndb-connectstring="$NDB_CONNECTSTRING" --timeout=$waiter_timeout_start >> $NDB_TOOLS_OUTPUT
31 --exec $NDB_MGM -e "show" >> $NDB_TOOLS_OUTPUT