mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
63e5307afd
* Increased timeout counter in galera_wait_ready.inc * Replaced useless include/wait_until_ready.inc after start_mysqld.inc in galera_st_*.inc with wait_condition on cluster size.
32 lines
628 B
PHP
32 lines
628 B
PHP
# include/galera_wait_ready.inc
|
|
#
|
|
# Waits for galera node to transition to READY state.
|
|
#
|
|
|
|
--enable_reconnect
|
|
--disable_query_log
|
|
--disable_result_log
|
|
let $wait_counter = 600;
|
|
while ($wait_counter)
|
|
{
|
|
--disable_abort_on_error
|
|
let $success = `SELECT VARIABLE_VALUE = 'ON' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_ready'`;
|
|
--enable_abort_on_error
|
|
if ($success)
|
|
{
|
|
let $wait_counter = 0;
|
|
}
|
|
if (!$success)
|
|
{
|
|
real_sleep 0.1;
|
|
dec $wait_counter;
|
|
}
|
|
}
|
|
|
|
if (!$success)
|
|
{
|
|
die "Server did not transition to READY state";
|
|
}
|
|
--disable_reconnect
|
|
--enable_query_log
|
|
--enable_result_log
|