2004-09-09 03:26:19 +02:00
|
|
|
/* Copyright (C) 2000-2003 MySQL AB
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
|
2000-11-11 22:50:39 +01:00
|
|
|
#ifndef SLAVE_H
|
|
|
|
#define SLAVE_H
|
|
|
|
|
2001-05-29 03:18:23 +02:00
|
|
|
#include "mysql.h"
|
2002-01-20 03:16:52 +01:00
|
|
|
#include "my_list.h"
|
2001-07-17 22:22:52 +02:00
|
|
|
#define SLAVE_NET_TIMEOUT 3600
|
2002-01-20 03:16:52 +01:00
|
|
|
#define MAX_SLAVE_ERRMSG 1024
|
2002-01-22 23:05:11 +01:00
|
|
|
#define MAX_SLAVE_ERROR 2000
|
2002-01-20 03:16:52 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
The replication is accomplished by starting two threads - I/O
|
|
|
|
thread, and SQL thread. I/O thread is associated with its
|
|
|
|
MASTER_INFO struct, so MASTER_INFO can be viewed as I/O thread
|
|
|
|
descriptor. SQL thread is associated with RELAY_LOG_INFO struct.
|
|
|
|
|
|
|
|
I/O thread reads maintains a connection to the master, and reads log
|
|
|
|
events from the master as they arrive, queueing them by writing them
|
|
|
|
out into the temporary slave binary log (relay log). The SQL thread,
|
|
|
|
in turn, reads the slave binary log executing each event.
|
|
|
|
|
|
|
|
Relay log is needed to be able to handle situations when there is a large
|
|
|
|
backlog of unprocessed events from the master (eg. one particular update
|
|
|
|
takes a day to finish), and to be able to restart the slave server without
|
|
|
|
having to re-read the master updates.
|
|
|
|
*/
|
2001-07-17 22:22:52 +02:00
|
|
|
|
2003-08-25 16:20:21 +02:00
|
|
|
/*
|
|
|
|
MUTEXES in replication:
|
|
|
|
|
Fix for BUG#2921 "Replication problem on mutex lock in mySQL-4.0.18":
re-using unused LOCK_active_mi to serialize all administrative
commands related to replication:
START SLAVE, STOP SLAVE, RESET SLAVE, CHANGE MASTER, init_slave()
(replication autostart at server startup), end_slave() (replication
autostop at server shutdown), LOAD DATA FROM MASTER.
This protects us against a handful of deadlocks (like BUG#2921
when two START SLAVE, but when two STOP SLAVE too).
Removing unused variables.
sql/item_func.cc:
We don't need LOCK_active_mi just to MASTER_POS_WAIT().
sql/repl_failsafe.cc:
no need for macro
sql/set_var.cc:
no need for macro
sql/slave.cc:
Re-using unused LOCK_active_mi to serialize all administrative
commands related to replication:
START SLAVE, STOP SLAVE, RESET SLAVE, CHANGE MASTER, init_slave()
(replication autostart at server startup), end_slave() (replication
autostop at server shutdown), LOAD DATA FROM MASTER.
This protects us against a handful of deadlocks.
Removing unused variables.
sql/slave.h:
Re-using LOCK_active_mi to serialize administrative replication commands.
Macros unneeded. Removing unneeded variables.
sql/sql_parse.cc:
found unused variable.
Replacing macros.
sql/sql_show.cc:
replacing macros
2004-03-11 16:23:35 +01:00
|
|
|
LOCK_active_mi: [note: this was originally meant for multimaster, to switch
|
|
|
|
from a master to another, to protect active_mi] It is used to SERIALIZE ALL
|
|
|
|
administrative commands of replication: START SLAVE, STOP SLAVE, CHANGE
|
|
|
|
MASTER, RESET SLAVE, end_slave() (when mysqld stops) [init_slave() does not
|
|
|
|
need it it's called early]. Any of these commands holds the mutex from the
|
|
|
|
start till the end. This thus protects us against a handful of deadlocks
|
|
|
|
(consider start_slave_thread() which, when starting the I/O thread, releases
|
|
|
|
mi->run_lock, keeps rli->run_lock, and tries to re-acquire mi->run_lock).
|
|
|
|
|
|
|
|
Currently active_mi never moves (it's created at startup and deleted at
|
|
|
|
shutdown, and not changed: it always points to the same MASTER_INFO struct),
|
|
|
|
because we don't have multimaster. So for the moment, mi does not move, and
|
|
|
|
mi->rli does not either.
|
2003-08-25 16:20:21 +02:00
|
|
|
|
|
|
|
In MASTER_INFO: run_lock, data_lock
|
|
|
|
run_lock protects all information about the run state: slave_running, and the
|
|
|
|
existence of the I/O thread (to stop/start it, you need this mutex).
|
|
|
|
data_lock protects some moving members of the struct: counters (log name,
|
|
|
|
position) and relay log (MYSQL_LOG object).
|
|
|
|
|
|
|
|
In RELAY_LOG_INFO: run_lock, data_lock
|
|
|
|
see MASTER_INFO
|
|
|
|
|
Fix for BUG#2921 "Replication problem on mutex lock in mySQL-4.0.18":
re-using unused LOCK_active_mi to serialize all administrative
commands related to replication:
START SLAVE, STOP SLAVE, RESET SLAVE, CHANGE MASTER, init_slave()
(replication autostart at server startup), end_slave() (replication
autostop at server shutdown), LOAD DATA FROM MASTER.
This protects us against a handful of deadlocks (like BUG#2921
when two START SLAVE, but when two STOP SLAVE too).
Removing unused variables.
sql/item_func.cc:
We don't need LOCK_active_mi just to MASTER_POS_WAIT().
sql/repl_failsafe.cc:
no need for macro
sql/set_var.cc:
no need for macro
sql/slave.cc:
Re-using unused LOCK_active_mi to serialize all administrative
commands related to replication:
START SLAVE, STOP SLAVE, RESET SLAVE, CHANGE MASTER, init_slave()
(replication autostart at server startup), end_slave() (replication
autostop at server shutdown), LOAD DATA FROM MASTER.
This protects us against a handful of deadlocks.
Removing unused variables.
sql/slave.h:
Re-using LOCK_active_mi to serialize administrative replication commands.
Macros unneeded. Removing unneeded variables.
sql/sql_parse.cc:
found unused variable.
Replacing macros.
sql/sql_show.cc:
replacing macros
2004-03-11 16:23:35 +01:00
|
|
|
Order of acquisition: if you want to have LOCK_active_mi and a run_lock, you
|
|
|
|
must acquire LOCK_active_mi first.
|
|
|
|
|
2003-08-25 16:20:21 +02:00
|
|
|
In MYSQL_LOG: LOCK_log, LOCK_index of the binlog and the relay log
|
|
|
|
LOCK_log: when you write to it. LOCK_index: when you create/delete a binlog
|
|
|
|
(so that you have to update the .index file).
|
|
|
|
*/
|
|
|
|
|
2001-10-03 15:27:20 +02:00
|
|
|
extern ulong slave_net_timeout, master_retry_count;
|
2002-01-22 23:05:11 +01:00
|
|
|
extern MY_BITMAP slave_error_mask;
|
|
|
|
extern bool use_slave_mask;
|
2001-08-03 23:57:53 +02:00
|
|
|
extern char* slave_load_tmpdir;
|
2002-01-20 03:16:52 +01:00
|
|
|
extern my_string master_info_file,relay_log_info_file;
|
|
|
|
extern my_string opt_relay_logname, opt_relaylog_index_name;
|
2002-08-22 15:50:58 +02:00
|
|
|
extern my_bool opt_skip_slave_start, opt_reckless_slave;
|
|
|
|
extern my_bool opt_log_slave_updates;
|
2002-08-23 14:14:01 +02:00
|
|
|
extern ulonglong relay_log_space_limit;
|
2002-01-20 03:16:52 +01:00
|
|
|
struct st_master_info;
|
|
|
|
|
Fix for bug 254 :
we now make a distinction between if the master is < 3.23.57, 3.23 && >=57, and 4.x
(before the 2 3.23 were one). This is because in 3.23.57 we have a way to distinguish between
a Start_log_event written at server startup and one written at FLUSH LOGS, so we
have a way to know if the slave must drop old temp tables or not.
Change: mi->old_format was bool, now it's enum (to handle 3 cases). However, functions
which had 'bool old_format' as an argument have their prototypes unchanged, because
the old old_format == 0 now corresponds to the enum value BINLOG_FORMAT_CURRENT which
is equal to 0, so boolean tests are left untouched. The only case were we use mi->old_format
as an enum instead of casting it implicitly to a bool, is in Start_log_event::exec_event,
where we want to distinguish between the 3 possible enum values.
sql/log_event.cc:
Fix for bug 254 :
we now make a distinction between if the master is < 3.23.57, 3.23 && >=57, and 4.x
(before the 2 3.23 were one), to know if the slave must drop old temp tables or not.
sql/slave.cc:
Fix for bug 254 : mi->old_format is now enum.
An unrelated comment.
sql/slave.h:
fix for bug 254 : mi->old_format is now enum.
2003-06-06 16:41:28 +02:00
|
|
|
enum enum_binlog_formats {
|
|
|
|
BINLOG_FORMAT_CURRENT=0, /* 0 is important for easy 'if (mi->old_format)' */
|
|
|
|
BINLOG_FORMAT_323_LESS_57,
|
|
|
|
BINLOG_FORMAT_323_GEQ_57 };
|
|
|
|
|
2002-01-20 03:16:52 +01:00
|
|
|
/*
|
|
|
|
st_relay_log_info contains information on the current relay log and
|
|
|
|
relay log offset, and master log name and log sequence corresponding to the
|
|
|
|
last update. Additionally, misc information specific to the SQL thread is
|
|
|
|
included.
|
|
|
|
|
|
|
|
st_relay_log_info is initialized from the slave.info file if such exists.
|
|
|
|
Otherwise, data members are intialized with defaults. The initialization is
|
|
|
|
done with init_relay_log_info() call.
|
|
|
|
|
|
|
|
The format of slave.info file:
|
|
|
|
|
|
|
|
relay_log_name
|
|
|
|
relay_log_pos
|
|
|
|
master_log_name
|
|
|
|
master_log_pos
|
|
|
|
|
|
|
|
To clean up, call end_relay_log_info()
|
|
|
|
*/
|
2002-01-29 17:32:16 +01:00
|
|
|
|
2002-01-20 03:16:52 +01:00
|
|
|
typedef struct st_relay_log_info
|
|
|
|
{
|
2002-01-29 17:32:16 +01:00
|
|
|
/*** The following variables can only be read when protect by data lock ****/
|
2002-06-11 10:20:31 +02:00
|
|
|
|
2002-01-29 17:32:16 +01:00
|
|
|
/*
|
|
|
|
info_fd - file descriptor of the info file. set only during
|
|
|
|
initialization or clean up - safe to read anytime
|
|
|
|
cur_log_fd - file descriptor of the current read relay log
|
|
|
|
*/
|
2002-01-20 03:16:52 +01:00
|
|
|
File info_fd,cur_log_fd;
|
2002-07-17 14:17:20 +02:00
|
|
|
/* name of current read relay log */
|
2002-01-20 03:16:52 +01:00
|
|
|
char relay_log_name[FN_REFLEN];
|
2002-07-17 14:17:20 +02:00
|
|
|
/* master log name corresponding to current read position */
|
2002-01-20 03:16:52 +01:00
|
|
|
char master_log_name[FN_REFLEN];
|
2002-07-17 14:17:20 +02:00
|
|
|
/* original log position of last processed event */
|
2002-01-29 17:32:16 +01:00
|
|
|
volatile my_off_t master_log_pos;
|
|
|
|
|
|
|
|
/*
|
2002-06-05 22:04:38 +02:00
|
|
|
Protected with internal locks.
|
|
|
|
Must get data_lock when resetting the logs.
|
2002-01-29 17:32:16 +01:00
|
|
|
*/
|
|
|
|
MYSQL_LOG relay_log;
|
|
|
|
LOG_INFO linfo;
|
|
|
|
IO_CACHE cache_buf,*cur_log;
|
|
|
|
|
2002-07-17 14:17:20 +02:00
|
|
|
/* The following variables are safe to read any time */
|
2002-01-29 17:32:16 +01:00
|
|
|
|
2002-07-17 14:17:20 +02:00
|
|
|
/* IO_CACHE of the info file - set only during init or end */
|
2002-01-29 17:32:16 +01:00
|
|
|
IO_CACHE info_file;
|
2001-05-29 03:18:23 +02:00
|
|
|
|
2002-01-29 17:32:16 +01:00
|
|
|
/*
|
|
|
|
When we restart slave thread we need to have access to the previously
|
|
|
|
created temporary tables. Modified only on init/end and by the SQL
|
|
|
|
thread, read only by SQL thread.
|
|
|
|
*/
|
2003-01-28 07:38:28 +01:00
|
|
|
TABLE *save_temporary_tables;
|
2002-01-20 03:16:52 +01:00
|
|
|
|
2002-01-29 17:32:16 +01:00
|
|
|
/*
|
|
|
|
standard lock acquistion order to avoid deadlocks:
|
|
|
|
run_lock, data_lock, relay_log.LOCK_log, relay_log.LOCK_index
|
|
|
|
*/
|
2002-01-20 03:16:52 +01:00
|
|
|
pthread_mutex_t data_lock,run_lock;
|
|
|
|
|
2002-01-29 17:32:16 +01:00
|
|
|
/*
|
|
|
|
start_cond is broadcast when SQL thread is started
|
|
|
|
stop_cond - when stopped
|
|
|
|
data_cond - when data protected by data_lock changes
|
|
|
|
*/
|
|
|
|
pthread_cond_t start_cond, stop_cond, data_cond;
|
2002-01-20 03:16:52 +01:00
|
|
|
|
2002-07-17 14:17:20 +02:00
|
|
|
/* parent master info structure */
|
2002-01-20 03:16:52 +01:00
|
|
|
struct st_master_info *mi;
|
|
|
|
|
2002-01-29 17:32:16 +01:00
|
|
|
/*
|
|
|
|
Needed to deal properly with cur_log getting closed and re-opened with
|
|
|
|
a different log under our feet
|
2002-01-20 03:16:52 +01:00
|
|
|
*/
|
2002-06-05 22:04:38 +02:00
|
|
|
uint32 cur_log_old_open_count;
|
2002-01-20 03:16:52 +01:00
|
|
|
|
2002-06-05 22:04:38 +02:00
|
|
|
/*
|
2002-06-11 10:20:31 +02:00
|
|
|
Current offset in the relay log.
|
2002-06-05 22:04:38 +02:00
|
|
|
pending - in some cases we do not increment offset immediately after
|
|
|
|
processing an event, because the following event needs to be processed
|
|
|
|
atomically together with this one ( so far, there is only one type of
|
|
|
|
such event - Intvar_event that sets auto_increment value). However, once
|
|
|
|
both events have been processed, we need to increment by the cumulative
|
|
|
|
offset. pending stored the extra offset to be added to the position.
|
|
|
|
*/
|
|
|
|
ulonglong relay_log_pos, pending;
|
2003-03-17 22:51:56 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
Handling of the relay_log_space_limit optional constraint.
|
|
|
|
ignore_log_space_limit is used to resolve a deadlock between I/O and SQL
|
2003-10-01 18:40:27 +02:00
|
|
|
threads, the SQL thread sets it to unblock the I/O thread and make it
|
2003-10-02 16:25:47 +02:00
|
|
|
temporarily forget about the constraint.
|
2003-03-17 22:51:56 +01:00
|
|
|
*/
|
2002-06-05 22:04:38 +02:00
|
|
|
ulonglong log_space_limit,log_space_total;
|
2003-10-02 16:25:47 +02:00
|
|
|
bool ignore_log_space_limit;
|
2002-01-29 17:32:16 +01:00
|
|
|
|
2002-08-08 02:12:02 +02:00
|
|
|
/*
|
2004-03-01 15:15:58 +01:00
|
|
|
When it commits, InnoDB internally stores the master log position it has
|
|
|
|
processed so far; the position to store is the one of the end of the
|
|
|
|
committing event (the COMMIT query event, or the event if in autocommit
|
|
|
|
mode).
|
2002-08-08 02:12:02 +02:00
|
|
|
*/
|
2004-03-01 15:15:58 +01:00
|
|
|
#if MYSQL_VERSION_ID < 40100
|
|
|
|
ulonglong future_master_log_pos;
|
|
|
|
#else
|
|
|
|
ulonglong future_group_master_log_pos;
|
|
|
|
#endif
|
2002-08-08 02:12:02 +02:00
|
|
|
|
2002-01-29 17:32:16 +01:00
|
|
|
/*
|
|
|
|
Needed for problems when slave stops and we want to restart it
|
|
|
|
skipping one or more events in the master log that have caused
|
|
|
|
errors, and have been manually applied by DBA already.
|
|
|
|
*/
|
2002-01-20 03:16:52 +01:00
|
|
|
volatile uint32 slave_skip_counter;
|
2002-08-21 21:04:22 +02:00
|
|
|
volatile ulong abort_pos_wait; /* Incremented on change master */
|
2002-08-24 04:44:16 +02:00
|
|
|
volatile ulong slave_run_id; /* Incremented on slave start */
|
2002-06-05 22:04:38 +02:00
|
|
|
pthread_mutex_t log_space_lock;
|
|
|
|
pthread_cond_t log_space_cond;
|
|
|
|
THD * sql_thd;
|
|
|
|
int last_slave_errno;
|
2002-01-20 03:16:52 +01:00
|
|
|
#ifndef DBUG_OFF
|
|
|
|
int events_till_abort;
|
|
|
|
#endif
|
|
|
|
char last_slave_error[MAX_SLAVE_ERRMSG];
|
2002-06-05 22:04:38 +02:00
|
|
|
|
2002-07-17 14:17:20 +02:00
|
|
|
/* if not set, the value of other members of the structure are undefined */
|
2002-06-05 22:04:38 +02:00
|
|
|
bool inited;
|
|
|
|
volatile bool abort_slave, slave_running;
|
2002-03-30 20:36:05 +01:00
|
|
|
bool skip_log_purge;
|
2002-12-11 14:46:39 +01:00
|
|
|
bool inside_transaction;
|
|
|
|
|
2003-01-28 07:38:28 +01:00
|
|
|
st_relay_log_info();
|
|
|
|
~st_relay_log_info();
|
2004-04-07 00:57:14 +02:00
|
|
|
void inc_pending(ulonglong val);
|
|
|
|
void inc_pos(ulonglong val, ulonglong log_pos, bool skip_lock=0);
|
|
|
|
void read_pos(ulonglong& var);
|
2003-01-25 14:07:51 +01:00
|
|
|
int wait_for_pos(THD* thd, String* log_name, longlong log_pos,
|
|
|
|
longlong timeout);
|
2003-11-02 15:38:27 +01:00
|
|
|
void close_temporary_tables();
|
2002-01-20 03:16:52 +01:00
|
|
|
} RELAY_LOG_INFO;
|
|
|
|
|
2002-08-08 02:12:02 +02:00
|
|
|
|
2002-01-20 03:16:52 +01:00
|
|
|
Log_event* next_event(RELAY_LOG_INFO* rli);
|
|
|
|
|
2002-01-29 17:32:16 +01:00
|
|
|
/*
|
|
|
|
st_master_info contains information about how to connect to a master,
|
2002-06-05 22:04:38 +02:00
|
|
|
current master log name, and current log offset, as well as misc
|
|
|
|
control variables
|
2002-01-20 03:16:52 +01:00
|
|
|
|
2002-06-05 22:04:38 +02:00
|
|
|
st_master_info is initialized once from the master.info file if such
|
|
|
|
exists. Otherwise, data members corresponding to master.info fields
|
|
|
|
are initialized with defaults specified by master-* options. The
|
|
|
|
initialization is done through init_master_info() call.
|
2002-01-20 03:16:52 +01:00
|
|
|
|
2002-06-05 22:04:38 +02:00
|
|
|
The format of master.info file:
|
2002-01-20 03:16:52 +01:00
|
|
|
|
2002-06-05 22:04:38 +02:00
|
|
|
log_name
|
|
|
|
log_pos
|
|
|
|
master_host
|
|
|
|
master_user
|
|
|
|
master_pass
|
|
|
|
master_port
|
|
|
|
master_connect_retry
|
2002-01-20 03:16:52 +01:00
|
|
|
|
2002-06-05 22:04:38 +02:00
|
|
|
To write out the contents of master.info file to disk ( needed every
|
|
|
|
time we read and queue data from the master ), a call to
|
|
|
|
flush_master_info() is required.
|
2002-01-20 03:16:52 +01:00
|
|
|
|
2002-06-05 22:04:38 +02:00
|
|
|
To clean up, call end_master_info()
|
2002-01-20 03:16:52 +01:00
|
|
|
*/
|
2002-01-29 17:32:16 +01:00
|
|
|
|
2002-01-20 03:16:52 +01:00
|
|
|
|
2000-11-11 22:50:39 +01:00
|
|
|
typedef struct st_master_info
|
|
|
|
{
|
2002-01-20 03:16:52 +01:00
|
|
|
char master_log_name[FN_REFLEN];
|
2003-07-04 02:18:15 +02:00
|
|
|
char host[HOSTNAME_LENGTH+1];
|
|
|
|
char user[USERNAME_LENGTH+1];
|
|
|
|
char password[MAX_PASSWORD_LENGTH+1];
|
2002-01-20 03:16:52 +01:00
|
|
|
|
2002-01-29 17:32:16 +01:00
|
|
|
my_off_t master_log_pos;
|
2002-08-08 02:12:02 +02:00
|
|
|
File fd; // we keep the file open, so we need to remember the file pointer
|
2000-11-25 03:49:13 +01:00
|
|
|
IO_CACHE file;
|
2002-01-20 03:16:52 +01:00
|
|
|
|
2002-07-17 14:17:20 +02:00
|
|
|
/* the variables below are needed because we can change masters on the fly */
|
2002-01-20 03:16:52 +01:00
|
|
|
pthread_mutex_t data_lock,run_lock;
|
|
|
|
pthread_cond_t data_cond,start_cond,stop_cond;
|
2002-01-29 17:32:16 +01:00
|
|
|
THD *io_thd;
|
2002-02-07 23:29:46 +01:00
|
|
|
MYSQL* mysql;
|
2003-07-04 02:18:15 +02:00
|
|
|
uint32 file_id; /* for 3.23 load data infile */
|
2002-01-20 03:16:52 +01:00
|
|
|
RELAY_LOG_INFO rli;
|
2002-01-29 17:32:16 +01:00
|
|
|
uint port;
|
|
|
|
uint connect_retry;
|
2002-01-20 03:16:52 +01:00
|
|
|
#ifndef DBUG_OFF
|
|
|
|
int events_till_abort;
|
|
|
|
#endif
|
2002-01-29 17:32:16 +01:00
|
|
|
bool inited;
|
2003-07-04 02:18:15 +02:00
|
|
|
enum enum_binlog_formats old_format; /* binlog is in 3.23 format */
|
2002-01-20 03:16:52 +01:00
|
|
|
volatile bool abort_slave, slave_running;
|
2002-08-24 04:44:16 +02:00
|
|
|
volatile ulong slave_run_id;
|
2002-01-27 06:26:24 +01:00
|
|
|
bool ignore_stop_event;
|
|
|
|
|
2002-08-24 04:44:16 +02:00
|
|
|
st_master_info()
|
Fix for bug 254 :
we now make a distinction between if the master is < 3.23.57, 3.23 && >=57, and 4.x
(before the 2 3.23 were one). This is because in 3.23.57 we have a way to distinguish between
a Start_log_event written at server startup and one written at FLUSH LOGS, so we
have a way to know if the slave must drop old temp tables or not.
Change: mi->old_format was bool, now it's enum (to handle 3 cases). However, functions
which had 'bool old_format' as an argument have their prototypes unchanged, because
the old old_format == 0 now corresponds to the enum value BINLOG_FORMAT_CURRENT which
is equal to 0, so boolean tests are left untouched. The only case were we use mi->old_format
as an enum instead of casting it implicitly to a bool, is in Start_log_event::exec_event,
where we want to distinguish between the 3 possible enum values.
sql/log_event.cc:
Fix for bug 254 :
we now make a distinction between if the master is < 3.23.57, 3.23 && >=57, and 4.x
(before the 2 3.23 were one), to know if the slave must drop old temp tables or not.
sql/slave.cc:
Fix for bug 254 : mi->old_format is now enum.
An unrelated comment.
sql/slave.h:
fix for bug 254 : mi->old_format is now enum.
2003-06-06 16:41:28 +02:00
|
|
|
:fd(-1), io_thd(0), inited(0), old_format(BINLOG_FORMAT_CURRENT),
|
|
|
|
abort_slave(0),slave_running(0), slave_run_id(0)
|
2000-11-11 22:50:39 +01:00
|
|
|
{
|
|
|
|
host[0] = 0; user[0] = 0; password[0] = 0;
|
2003-07-03 01:08:34 +02:00
|
|
|
bzero((char *)&file, sizeof(file));
|
2002-01-20 03:16:52 +01:00
|
|
|
pthread_mutex_init(&run_lock, MY_MUTEX_INIT_FAST);
|
|
|
|
pthread_mutex_init(&data_lock, MY_MUTEX_INIT_FAST);
|
|
|
|
pthread_cond_init(&data_cond, NULL);
|
|
|
|
pthread_cond_init(&start_cond, NULL);
|
|
|
|
pthread_cond_init(&stop_cond, NULL);
|
2000-11-11 22:50:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
~st_master_info()
|
|
|
|
{
|
2002-01-20 03:16:52 +01:00
|
|
|
pthread_mutex_destroy(&run_lock);
|
|
|
|
pthread_mutex_destroy(&data_lock);
|
|
|
|
pthread_cond_destroy(&data_cond);
|
|
|
|
pthread_cond_destroy(&start_cond);
|
|
|
|
pthread_cond_destroy(&stop_cond);
|
2000-11-11 22:50:39 +01:00
|
|
|
}
|
2001-01-17 13:47:33 +01:00
|
|
|
|
2000-11-11 22:50:39 +01:00
|
|
|
} MASTER_INFO;
|
|
|
|
|
2002-09-11 05:40:08 +02:00
|
|
|
|
2002-01-29 17:32:16 +01:00
|
|
|
int queue_event(MASTER_INFO* mi,const char* buf,ulong event_len);
|
2002-01-20 03:16:52 +01:00
|
|
|
|
2000-11-11 22:50:39 +01:00
|
|
|
typedef struct st_table_rule_ent
|
|
|
|
{
|
|
|
|
char* db;
|
|
|
|
char* tbl_name;
|
|
|
|
uint key_len;
|
|
|
|
} TABLE_RULE_ENT;
|
|
|
|
|
|
|
|
#define TABLE_RULE_HASH_SIZE 16
|
2000-11-21 07:38:08 +01:00
|
|
|
#define TABLE_RULE_ARR_SIZE 16
|
2001-08-03 23:57:53 +02:00
|
|
|
#define MAX_SLAVE_ERRMSG 1024
|
|
|
|
|
2002-01-20 03:16:52 +01:00
|
|
|
#define RPL_LOG_NAME (rli->master_log_name[0] ? rli->master_log_name :\
|
|
|
|
"FIRST")
|
|
|
|
#define IO_RPL_LOG_NAME (mi->master_log_name[0] ? mi->master_log_name :\
|
2001-08-03 23:57:53 +02:00
|
|
|
"FIRST")
|
|
|
|
|
2002-01-20 03:16:52 +01:00
|
|
|
/* masks for start/stop operations on io and sql slave threads */
|
|
|
|
#define SLAVE_IO 1
|
|
|
|
#define SLAVE_SQL 2
|
2002-01-29 17:32:16 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
If the following is set, if first gives an error, second will be
|
|
|
|
tried. Otherwise, if first fails, we fail.
|
|
|
|
*/
|
|
|
|
#define SLAVE_FORCE_ALL 4
|
2000-11-11 22:50:39 +01:00
|
|
|
|
2002-01-20 03:16:52 +01:00
|
|
|
int init_slave();
|
2002-04-30 15:40:46 +02:00
|
|
|
void init_slave_skip_errors(const char* arg);
|
2004-03-10 16:56:28 +01:00
|
|
|
bool flush_master_info(MASTER_INFO* mi, bool flush_relay_log_cache);
|
2004-03-10 16:30:47 +01:00
|
|
|
bool flush_relay_log_info(RELAY_LOG_INFO* rli);
|
2001-05-31 02:50:56 +02:00
|
|
|
int register_slave_on_master(MYSQL* mysql);
|
2002-01-20 03:16:52 +01:00
|
|
|
int terminate_slave_threads(MASTER_INFO* mi, int thread_mask,
|
|
|
|
bool skip_lock = 0);
|
|
|
|
int terminate_slave_thread(THD* thd, pthread_mutex_t* term_mutex,
|
|
|
|
pthread_mutex_t* cond_lock,
|
|
|
|
pthread_cond_t* term_cond,
|
|
|
|
volatile bool* slave_running);
|
|
|
|
int start_slave_threads(bool need_slave_mutex, bool wait_for_start,
|
|
|
|
MASTER_INFO* mi, const char* master_info_fname,
|
|
|
|
const char* slave_info_fname, int thread_mask);
|
2002-01-29 17:32:16 +01:00
|
|
|
/*
|
|
|
|
cond_lock is usually same as start_lock. It is needed for the case when
|
|
|
|
start_lock is 0 which happens if start_slave_thread() is called already
|
|
|
|
inside the start_lock section, but at the same time we want a
|
|
|
|
pthread_cond_wait() on start_cond,start_lock
|
2002-01-20 03:16:52 +01:00
|
|
|
*/
|
|
|
|
int start_slave_thread(pthread_handler h_func, pthread_mutex_t* start_lock,
|
|
|
|
pthread_mutex_t *cond_lock,
|
|
|
|
pthread_cond_t* start_cond,
|
2002-08-24 04:44:16 +02:00
|
|
|
volatile bool *slave_running,
|
|
|
|
volatile ulong *slave_run_id,
|
2002-01-20 03:16:52 +01:00
|
|
|
MASTER_INFO* mi);
|
2000-11-11 22:50:39 +01:00
|
|
|
|
2002-07-17 14:17:20 +02:00
|
|
|
/* If fd is -1, dump to NET */
|
2001-05-29 03:18:23 +02:00
|
|
|
int mysql_table_dump(THD* thd, const char* db,
|
|
|
|
const char* tbl_name, int fd = -1);
|
|
|
|
|
* Fix for BUG#1248: "LOAD DATA FROM MASTER drops the slave's db unexpectedly".
Now LOAD DATA FROM MASTER does not drop the database, instead it only tries to
create it, and drops/creates table-by-table.
* replicate_wild_ignore_table='db1.%' is now considered as "ignore the 'db1'
database as a whole", as it already works for CREATE DATABASE and DROP DATABASE.
mysql-test/r/rpl000009.result:
result update
mysql-test/t/rpl000009.test:
test that LOAD DATA FROM MASTER does not drop databases,
but rather table by table, thus preserving non-replicated tables.
Test that LOAD DATA FROM MASTER reports the error when a table could not
be dropped (system's "permission denied" for example).
Test that LOAD TABLE FROM MASTER reports the error when the table already exists.
sql/repl_failsafe.cc:
* replicate_wild_ignore_table='db1.%' is now considered as "ignore the 'db1'
database as a whole", as it already works for CREATE DATABASE and DROP DATABASE.
* If a db matches replicate_*_db rules, we don't drop/recreate it because this
could drop some tables in this db which could be slave-specific. Instead,
we do a CREATE DATABASE IF EXISTS, and we will drop each table which has
an equivalent on the master, table-by-table.
sql/slave.cc:
New argument to drop the table in create_table_from_dump()
(LOAD TABLE/DATA FROM MASTER are the only places where this function is used).
This is needed because LOAD DATA FROM MASTER does not drop the database anymore.
The behaviour when the table exists is unchanged: LOAD DATA silently replaces
the table, LOAD TABLE gives error.
sql/slave.h:
new argument to drop the table in fetch_master_table
sql/sql_parse.cc:
do not drop the table in LOAD TABLE FROM MASTER (this behaviour is already
true; but changes in LOAD DATA FROM MASTER made the argument needed).
2003-09-11 23:17:28 +02:00
|
|
|
/* retrieve table from master and copy to slave*/
|
2002-01-29 17:32:16 +01:00
|
|
|
int fetch_master_table(THD* thd, const char* db_name, const char* table_name,
|
* Fix for BUG#1248: "LOAD DATA FROM MASTER drops the slave's db unexpectedly".
Now LOAD DATA FROM MASTER does not drop the database, instead it only tries to
create it, and drops/creates table-by-table.
* replicate_wild_ignore_table='db1.%' is now considered as "ignore the 'db1'
database as a whole", as it already works for CREATE DATABASE and DROP DATABASE.
mysql-test/r/rpl000009.result:
result update
mysql-test/t/rpl000009.test:
test that LOAD DATA FROM MASTER does not drop databases,
but rather table by table, thus preserving non-replicated tables.
Test that LOAD DATA FROM MASTER reports the error when a table could not
be dropped (system's "permission denied" for example).
Test that LOAD TABLE FROM MASTER reports the error when the table already exists.
sql/repl_failsafe.cc:
* replicate_wild_ignore_table='db1.%' is now considered as "ignore the 'db1'
database as a whole", as it already works for CREATE DATABASE and DROP DATABASE.
* If a db matches replicate_*_db rules, we don't drop/recreate it because this
could drop some tables in this db which could be slave-specific. Instead,
we do a CREATE DATABASE IF EXISTS, and we will drop each table which has
an equivalent on the master, table-by-table.
sql/slave.cc:
New argument to drop the table in create_table_from_dump()
(LOAD TABLE/DATA FROM MASTER are the only places where this function is used).
This is needed because LOAD DATA FROM MASTER does not drop the database anymore.
The behaviour when the table exists is unchanged: LOAD DATA silently replaces
the table, LOAD TABLE gives error.
sql/slave.h:
new argument to drop the table in fetch_master_table
sql/sql_parse.cc:
do not drop the table in LOAD TABLE FROM MASTER (this behaviour is already
true; but changes in LOAD DATA FROM MASTER made the argument needed).
2003-09-11 23:17:28 +02:00
|
|
|
MASTER_INFO* mi, MYSQL* mysql, bool overwrite);
|
2001-05-29 03:18:23 +02:00
|
|
|
|
2002-01-20 03:16:52 +01:00
|
|
|
int show_master_info(THD* thd, MASTER_INFO* mi);
|
2000-11-11 22:50:39 +01:00
|
|
|
int show_binlog_info(THD* thd);
|
|
|
|
|
2002-07-17 14:17:20 +02:00
|
|
|
/* See if the query uses any tables that should not be replicated */
|
2000-11-14 07:43:02 +01:00
|
|
|
int tables_ok(THD* thd, TABLE_LIST* tables);
|
|
|
|
|
2002-01-29 17:32:16 +01:00
|
|
|
/*
|
|
|
|
Check to see if the database is ok to operate on with respect to the
|
|
|
|
do and ignore lists - used in replication
|
|
|
|
*/
|
2000-11-11 22:50:39 +01:00
|
|
|
int db_ok(const char* db, I_List<i_string> &do_list,
|
|
|
|
I_List<i_string> &ignore_list );
|
2003-01-25 14:07:51 +01:00
|
|
|
int db_ok_with_wild_table(const char *db);
|
2000-11-11 22:50:39 +01:00
|
|
|
|
2000-11-14 07:43:02 +01:00
|
|
|
int add_table_rule(HASH* h, const char* table_spec);
|
2000-11-21 07:38:08 +01:00
|
|
|
int add_wild_table_rule(DYNAMIC_ARRAY* a, const char* table_spec);
|
2000-11-14 07:43:02 +01:00
|
|
|
void init_table_rule_hash(HASH* h, bool* h_inited);
|
2000-11-21 07:38:08 +01:00
|
|
|
void init_table_rule_array(DYNAMIC_ARRAY* a, bool* a_inited);
|
2003-08-07 19:16:37 +02:00
|
|
|
const char *rewrite_db(const char* db);
|
|
|
|
const char *print_slave_db_safe(const char* db);
|
2002-01-20 03:16:52 +01:00
|
|
|
int check_expected_error(THD* thd, RELAY_LOG_INFO* rli, int error_code);
|
2001-08-03 23:57:53 +02:00
|
|
|
void skip_load_data_infile(NET* net);
|
WL#1036 (print the db in slave error messages).
I extended the task to cleaning error messages, making them look nicer,
and making the output of SHOW SLAVE STATUS (column Last_error) be as complete
as what's printed on the .err file;
previously we would have, for a failure of a replicated LOAD DATA INFILE:
- in the .err, 2 lines:
"duplicate entry 2708 for key 1"
"failed loading SQL_LOAD-5-2-2.info"
- and in SHOW SLAVE STATUS, only:
"failed loading SQL_LOAD-5-2-2.info".
Now SHOW SLAVE STATUS will contain the concatenation of the 2 messages.
sql/log_event.cc:
Print the default database when replication stops because of an error. Previously, we had:
"error "Duplicate entry 87987 for key 1", query 'insert into t values(87987)'", ie the db
was not mentioned, making it hard for cases where the same table name is used in
several databases.
Lengthened some error messages (for failing replication of LOAD DATA: mention the table
and the db).
Changes so that SHOW SLAVE STATUS reports as complete errors as the .err file.
sql/slave.cc:
Removed a useless declaration (the rewrite_db() function is already declared in slave.h).
Added missing ')' in error messages.
Tried to make error messages look nicer (previously we had
"do START SLAVE;, error_code=1062"
now we'll have
"do START SLAVE; . Error_code=1062".
This form has been discussed, I agree it's no panacea, but it's still more readable
like this. To be improved in the future :)
sql/slave.h:
declarations.
2003-07-24 22:25:36 +02:00
|
|
|
void slave_print_error(RELAY_LOG_INFO* rli, int err_code, const char* msg, ...);
|
2000-11-11 22:50:39 +01:00
|
|
|
|
2002-07-17 14:17:20 +02:00
|
|
|
void end_slave(); /* clean up */
|
2003-08-04 10:59:44 +02:00
|
|
|
void init_master_info_with_options(MASTER_INFO* mi);
|
|
|
|
void clear_last_slave_error(RELAY_LOG_INFO* rli);
|
2002-01-20 03:16:52 +01:00
|
|
|
int init_master_info(MASTER_INFO* mi, const char* master_info_fname,
|
2002-08-08 02:12:02 +02:00
|
|
|
const char* slave_info_fname,
|
|
|
|
bool abort_if_no_master_info_file);
|
2000-12-09 22:28:51 +01:00
|
|
|
void end_master_info(MASTER_INFO* mi);
|
2002-01-20 03:16:52 +01:00
|
|
|
int init_relay_log_info(RELAY_LOG_INFO* rli, const char* info_fname);
|
|
|
|
void end_relay_log_info(RELAY_LOG_INFO* rli);
|
|
|
|
void lock_slave_threads(MASTER_INFO* mi);
|
|
|
|
void unlock_slave_threads(MASTER_INFO* mi);
|
|
|
|
void init_thread_mask(int* mask,MASTER_INFO* mi,bool inverse);
|
|
|
|
int init_relay_log_pos(RELAY_LOG_INFO* rli,const char* log,ulonglong pos,
|
|
|
|
bool need_data_lock, const char** errmsg);
|
2001-01-24 17:15:34 +01:00
|
|
|
|
2002-08-08 02:12:02 +02:00
|
|
|
int purge_relay_logs(RELAY_LOG_INFO* rli, THD *thd, bool just_reset,
|
|
|
|
const char** errmsg);
|
2003-07-06 17:59:54 +02:00
|
|
|
void rotate_relay_log(MASTER_INFO* mi);
|
2002-01-20 03:16:52 +01:00
|
|
|
|
2002-11-07 02:54:00 +01:00
|
|
|
extern "C" pthread_handler_decl(handle_slave_io,arg);
|
|
|
|
extern "C" pthread_handler_decl(handle_slave_sql,arg);
|
2002-01-20 03:16:52 +01:00
|
|
|
extern bool volatile abort_loop;
|
2002-07-17 14:17:20 +02:00
|
|
|
extern MASTER_INFO main_mi, *active_mi; /* active_mi for multi-master */
|
2002-01-20 03:16:52 +01:00
|
|
|
extern LIST master_list;
|
2000-11-11 22:50:39 +01:00
|
|
|
extern HASH replicate_do_table, replicate_ignore_table;
|
2000-11-14 07:43:02 +01:00
|
|
|
extern DYNAMIC_ARRAY replicate_wild_do_table, replicate_wild_ignore_table;
|
|
|
|
extern bool do_table_inited, ignore_table_inited,
|
|
|
|
wild_do_table_inited, wild_ignore_table_inited;
|
2004-04-28 18:24:46 +02:00
|
|
|
extern bool table_rules_on, replicate_same_server_id;
|
2000-11-11 22:50:39 +01:00
|
|
|
|
2000-12-02 18:11:50 +01:00
|
|
|
extern int disconnect_slave_event_count, abort_slave_event_count ;
|
2000-11-22 08:23:31 +01:00
|
|
|
|
2002-07-17 14:17:20 +02:00
|
|
|
/* the master variables are defaults read from my.cnf or command line */
|
2001-05-31 02:50:56 +02:00
|
|
|
extern uint master_port, master_connect_retry, report_port;
|
2000-11-11 22:50:39 +01:00
|
|
|
extern my_string master_user, master_password, master_host,
|
2002-01-29 17:32:16 +01:00
|
|
|
master_info_file, relay_log_info_file, report_user, report_host,
|
|
|
|
report_password;
|
2000-11-11 22:50:39 +01:00
|
|
|
|
|
|
|
extern I_List<i_string> replicate_do_db, replicate_ignore_db;
|
|
|
|
extern I_List<i_string_pair> replicate_rewrite_db;
|
|
|
|
extern I_List<THD> threads;
|
|
|
|
|
|
|
|
#endif
|