I am new to MySQL and after a long search i am able to configure master-slave ROW based replication. I thought it would be safe and I would not have to recheck it again and again.

But today when I did "show slave status" on slave then I found following

couuld not execute Write_rows event on table mydatabasename.atable; Duplicate entry '174465' for key 'PRIMARY', Error_code: 1062; handler error HA_ERR_FOUND_DUPP_KEY; the event's master log mysql-bin.000004, end_log_pos 60121977

can someone tell me how this can even come when master has no such error and schema on both server is the same then how could this happen. And how to fix it to make this work again and how to prevent such thing in future.

please also let me know what else unexpected i should expect other than this.

Regards

link|improve this question

60% accept rate
There are lots of reasons why this might happen, however it would have been useful if you'd checked the data store for pk=174465 on the master and slave after the error to see if the data was already the same. – symcbean Jan 12 '11 at 13:30
Thanks, I check that one it is already there but the reason asking for the question how can it might have happened, there was some power failure before this, But doesn't mysql ensures consistency by using database transactions to update slave??? – Mubashar Ahmad Jan 12 '11 at 14:01
feedback

2 Answers

It would never happen on master, why?

The series of SQL are replicated from master,
if the record already exist in master, mysql reject on master

but on slave, if fails and the replication position does not advanced to next SQL (it just halted)

Reason?

The insert query of that record is write directly into slave without using replication from the master

How to fix?

Skip the error on slave, like

SET GLOBAL sql_slave_skip_counter = N;

details - http://dev.mysql.com/doc/refman/5.0/en/set-global-sql-slave-skip-counter.html

Or delete the duplicate record on slave, resume the slave again (let the replication do the insertion)

The worse scenario, required you to re-do the setup again to ensure data integrity on slave.

How to prevent?

Check application level, make sure no write directly into slave
This including how you connect to mysql in command prompt

Split mysql user that can do write and read,
So, your application should use read user (master and slave) when does not require write.
Use write user (master only) for action require write to database.

link|improve this answer
Thanks for reply, but Slave is not getting updated from anywhere I just used to connect a command line client to view the slave status no other application or connection ever opened to update the slave directly. – Mubashar Ahmad Jan 18 '11 at 5:37
feedback

http://bugs.mysql.com/bug.php?id=38205 this link may help you.

link|improve this answer
Nice article but it is considering MyISAM tables but I am using InnoDB. – Mubashar Ahmad Jan 12 '11 at 14:09
Ok. can you help me in this, can you tell me if slave is being updated in transactional manner or non-transaction and if non-transactional can i switch the mode to transactional??? – Mubashar Ahmad Jan 12 '11 at 14:13
You can switch the mode to transactional. You should be careful with the queries that you execute in the transactional mode. – programmer Jan 12 '11 at 16:53
Can you please send me some article,URL on this, to explain HOW and what are the things be careful with. – Mubashar Ahmad Jan 13 '11 at 6:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.