PDF (US Ltr)
        - 43.3Mb
                                PDF (A4)
        - 43.4Mb
                                Man Pages (TGZ)
        - 297.1Kb
                                Man Pages (Zip)
        - 402.4Kb
                                Info (Gzip)
        - 4.3Mb
                                Info (Zip)
        - 4.3Mb
                    
            Search Results
                        
                    
                    
            https://dev.mysql.com/doc/refman/8.0/en/replication-formats.html
                                 Replication works because events written to the binary log are read from the source and then processed on the replica. The events are recorded within the binary log in different formats according to the type of event. The different replication ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/replication-gtids-concepts.html
                                 A global transaction identifier (GTID) is a unique identifier created and associated with each transaction committed on the server of origin (the source). This identifier is unique not only to the server on which it originated, but is unique across ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/replication-howto-slavebaseconfig.html
                                 Each replica must have a unique server ID, as specified by the server_id system variable. If you are setting up multiple replicas, each one must have a unique server_id value that differs from that of the source and from any of the other replicas. 
                                            
                https://dev.mysql.com/doc/refman/8.0/en/replication-mode-change-online-disable-gtids.html
                                 This section describes how to disable GTID transactions on servers that are already online. This procedure does not require taking the server offline and is suited to use in production. However, if you have the possibility to take the servers ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/replication-multi-source-start-replica.html
                                 Once you have added channels for all of the replication sources, issue a START REPLICA (or before MySQL 8.0.22, START SLAVE) statement to start replication. When you have enabled multiple channels on a replica, you can choose to either start all ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/replication-options-reference.html
                                 The following two sections provide basic information about the MySQL command-line options and system variables applicable to replication and the binary log. Replication Options and Variables The command-line options and system variables in the ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/replication-semisync-interface.html
                                 When you install the source and replica plugins for semisynchronous replication (see Section 19.4.10.1, “Installing Semisynchronous Replication”), system variables become available to control plugin behavior. To check the current values of the ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/replication-semisync-monitoring.html
                                 The plugins for semisynchronous replication expose a number of status variables that enable you to monitor their operation. To check the current values of the status variables, use SHOW STATUS: mysql> SHOW STATUS LIKE 'Rpl_semi_sync%'; Beginning ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/replication-semisync.html
                                 In addition to the built-in asynchronous replication, MySQL 8.0 supports an interface to semisynchronous replication that is implemented by plugins. This section discusses what semisynchronous replication is and how it works. The following sections ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/replication-solutions-backups-read-only.html
                                Note The instructions in this section place the server to be backed up in a state that is safe for backup methods that get the data from the server, such as mysqldump (see Section 6.5.4, “mysqldump — A Database Backup Program”). You should not ...