MySQL Master-slave replication

Source: Internet
Author: User

MySQL master-slave replication:

Some points to note: 1, master must open Binglog, set a unique server ID 2, each slave must be set unique server ID 3, for slaves to establish a can read the Master Binlog authorization account 4, If master has data, you must copy the existing data to slave, and use Chagne master to set the master's postition, file, host, and so on.

MySQL's binlog consists of three forms: statement-based,row-based,mixed

Statement-based: The advantages are very simple, save disk space, compatibility good; Many of the statements are not able to correctly express such as containing Rand (), Delete/update...limit without Order by,version (), UUID (), UDF, for complex statements needs to be evaluated and executed, whereas for row-based, only affetced rows will be executed.

Row-based: Advantages 1 All changes can be duplicated; 2 fewer row lock requirements, increased concurrency disadvantage for some insert UPDATE statements, you may need a lot of disk space, and for Mysiam there may be no way to perform concurrent insertions (table locks)

MySQL Master-slave replication

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.