2 ## Restarts a NDB cluster
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
8 ## In addition, $NDB_CONNECTSTRING, $NDB_MGM, $NDB_TOOLS_DIR and $NDB_TOOLS_OUTPUT
9 ## must be set (they are normally proivided by MTR).
13 if (`SELECT LENGTH(
'$waiter_timeout_start') = 0`) {
14 let $waiter_timeout_start= 600;
16 if (`SELECT LENGTH(
'$waiter_timeout_stop') = 0`) {
17 let $waiter_timeout_stop= 30;
20 --echo # System restart:
21 --append_file $NDB_TOOLS_OUTPUT
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