MySQL 多线程复制

多线程复制解决的问题

多线程复制

while(!killed) 
do
	Read(E)/*E is replication event*/
	Terminate(/*untile condition met*/)
		or 
	Skip(E)
		or
	Execute(E);
	
	if(E is the last in its group)
		update(rli info);
done