2008年3月6日木曜日

レプリケーションのスレーブオプション



特定のテーブルのみレプリケーションしたい場合の設定は、


my.cnf に記述してmysqlを再起動する



[mysqld]

replicate-do-table=dbname.tablename1
replicate-do-table=dbname.tablename2
replicate-do-table=dbname.tablename3



複数指定する場合は、そのテーブル数だけ記述すればよい。


再起動後、show slave status; で、上記の設定が表示されていればOK



mysql> SHOW SLAVE STATUS\G
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: master1
Master_User: root
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000004
Read_Master_Log_Pos: 931
Relay_Log_File: slave1-relay-bin.000056
Relay_Log_Pos: 950
Relay_Master_Log_File: mysql-bin.000004
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Replicate_Do_DB:
Replicate_Ignore_DB:
Replicate_Do_Table: dbname.tablename1,dbname.tablename2,dbname.tablename3
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 931
Relay_Log_Space: 1365
Until_Condition: None
Until_Log_File:
Until_Log_Pos: 0
Master_SSL_Allowed: No
Master_SSL_CA_File:
Master_SSL_CA_Path:
Master_SSL_Cert:
Master_SSL_Cipher:
Master_SSL_Key:
Seconds_Behind_Master: 0
1 row in set (0.01 sec)





0 件のコメント: