真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

mysql只讀模式下數(shù)據(jù)遷移,保證數(shù)據(jù)一致性-創(chuàng)新互聯(lián)

  在MySQL數(shù)據(jù)庫(kù)中,在進(jìn)行數(shù)據(jù)遷移和從庫(kù)只讀狀態(tài)設(shè)置時(shí),都會(huì)涉及到只讀狀態(tài)和Master-slave的設(shè)置和關(guān)系。

    經(jīng)過(guò)實(shí)際測(cè)試,對(duì)于MySQL單實(shí)例數(shù)據(jù)庫(kù)和master庫(kù),如果需要設(shè)置為只讀狀態(tài),需要進(jìn)行如下操作和設(shè)置:

創(chuàng)新互聯(lián) - 服務(wù)器托管,四川服務(wù)器租用,成都服務(wù)器租用,四川網(wǎng)通托管,綿陽(yáng)服務(wù)器托管,德陽(yáng)服務(wù)器托管,遂寧服務(wù)器托管,綿陽(yáng)服務(wù)器托管,四川云主機(jī),成都云主機(jī),西南云主機(jī),服務(wù)器托管,西南服務(wù)器托管,四川/成都大帶寬,機(jī)柜大帶寬,四川老牌IDC服務(wù)商

一般單實(shí)例情況下將MySQL設(shè)置為只讀狀態(tài)的命令:

# mysql -uroot -p mysql> show global variables like "%read_only%"; mysql>flush tables with read lock; mysql>set global read_only=1; mysql> show global variables like "%read_only%";

將MySQL從只讀設(shè)置為讀寫狀態(tài)的命令:

mysql> unlock tables; mysql>  set global read_only=0;

   對(duì)于需要保證master-slave主從同步的salve庫(kù),如果要設(shè)置為只讀狀態(tài),需要執(zhí)行的命令為:
mysql> set global read_only=1;  打開(kāi)只讀開(kāi)關(guān)

   將salve庫(kù)從只讀狀態(tài)變?yōu)樽x寫狀態(tài),需要執(zhí)行的命令是:
mysql> set global read_only=0;  打開(kāi)讀寫開(kāi)關(guān)

   對(duì)于數(shù)據(jù)庫(kù)讀寫狀態(tài),主要靠 “read_only”全局參數(shù)來(lái)設(shè)定;

   默認(rèn)情況下,數(shù)據(jù)庫(kù)是用于讀寫操作的,所以read_only參數(shù)也是0或faluse狀態(tài),這時(shí)候不論是本地用戶還是遠(yuǎn)程訪問(wèn)數(shù)據(jù)庫(kù)的用戶,都可以進(jìn)行讀寫操作;

   如需設(shè)置為只讀狀態(tài),將該read_only參數(shù)設(shè)置為1或TRUE狀態(tài),但設(shè)置 read_only=1 狀態(tài)有兩個(gè)需要注意的地方:
   1.read_only=1只讀模式,不會(huì)影響slave同步復(fù)制的功能,所以在MySQL slave庫(kù)中設(shè)定了read_only=1后,通過(guò) show slave status\G 命令查看salve狀態(tài),可以看到salve仍然會(huì)讀取master上的日志,并且在slave庫(kù)中應(yīng)用日志,保證主從數(shù)據(jù)庫(kù)同步一致;
   2.read_only=1只讀模式,可以限定普通用戶進(jìn)行數(shù)據(jù)修改的操作,但不會(huì)限定具有super權(quán)限的用戶的數(shù)據(jù)修改操作;在MySQL中設(shè)置read_only=1后,普通的應(yīng)用用戶進(jìn)行insert、update、delete等會(huì)產(chǎn)生數(shù)據(jù)變化的DML操作時(shí),都會(huì)報(bào)出數(shù)據(jù)庫(kù)處于只讀模式不能發(fā)生數(shù)據(jù)變化的錯(cuò)誤,但具有super權(quán)限的用戶,例如在本地或遠(yuǎn)程通過(guò)root用戶登錄到數(shù)據(jù)庫(kù),還是可以進(jìn)行數(shù)據(jù)變化的DML操作;

   為了確保所有用戶,包括具有super權(quán)限的用戶也不能進(jìn)行讀寫操作,就需要執(zhí)行給所有的表加讀鎖的命令 “flush tables with read lock;”,這樣使用具有super權(quán)限的用戶登錄數(shù)據(jù)庫(kù),想要發(fā)生數(shù)據(jù)變化的操作時(shí),也會(huì)提示表被鎖定不能修改的報(bào)錯(cuò)。

    這樣通過(guò) 設(shè)置“read_only=1”和“flush tables with read lock;”兩條命令,就可以確保數(shù)據(jù)庫(kù)處于只讀模式,不會(huì)發(fā)生任何數(shù)據(jù)改變,在MySQL進(jìn)行數(shù)據(jù)庫(kù)遷移時(shí),限定master主庫(kù)不能有任何數(shù)據(jù)變化,就可以通過(guò)這種方式來(lái)設(shè)定。

    但同時(shí)由于加表鎖的命令對(duì)數(shù)據(jù)庫(kù)表限定非常嚴(yán)格,如果再slave從庫(kù)上執(zhí)行這個(gè)命令后,slave庫(kù)可以從master讀取binlog日志,但不能夠應(yīng)用日志,slave庫(kù)不能發(fā)生數(shù)據(jù)改變,當(dāng)然也不能夠?qū)崿F(xiàn)主從同步了,這時(shí)如果使用 “unlock tables;”解除全局的表讀鎖,slave就會(huì)應(yīng)用從master讀取到的binlog日志,繼續(xù)保證主從庫(kù)數(shù)據(jù)庫(kù)一致同步。

    為了保證主從同步可以一直進(jìn)行,在slave庫(kù)上要保證具有super權(quán)限的root等用戶只能在本地登錄,不會(huì)發(fā)生數(shù)據(jù)變化,其他遠(yuǎn)程連接的應(yīng)用用戶只按需分配為select,insert,update,delete等權(quán)限,保證沒(méi)有super權(quán)限,則只需要將salve設(shè)定“read_only=1”模式,即可保證主從同步,又可以實(shí)現(xiàn)從庫(kù)只讀。

    相對(duì)的,設(shè)定“read_only=1”只讀模式開(kāi)啟的解鎖命令為設(shè)定“read_only=0”;設(shè)定全局鎖“flush tables with read lock;”,對(duì)應(yīng)的解鎖模式命令為:“unlock tables;”.

   當(dāng)然設(shè)定了read_only=1后,所有的select查詢操作都是可以正常進(jìn)行的。

實(shí)驗(yàn)一:設(shè)置了read_only=1后,遠(yuǎn)程業(yè)務(wù)用戶進(jìn)行數(shù)據(jù)庫(kù)修改會(huì)提示ERROR 1290錯(cuò)誤:

 copy (test01@172.32.1.200) [data03]> show tables;   +------------------+   | Tables_in_data03 |   +------------------+   | t01              |   | t02              |   | user             |   +------------------+   3 rows in set (0.00 sec)      (test01@172.32.1.200) [data03]>    (test01@172.32.1.200) [data03]>    (test01@172.32.1.200) [data03]> show global variables like "%read_only%";   +------------------+-------+   | Variable_name    | Value |   +------------------+-------+   | innodb_read_only | OFF   |   | read_only        | ON    |   | tx_read_only     | OFF   |   +------------------+-------+   3 rows in set (0.00 sec)      (test01@172.32.1.200) [data03]>    (test01@172.32.1.200) [data03]>    (test01@172.32.1.200) [data03]> delete from t01 where id1=3;   ERROR 1290 (HY000): The MySQL server is running with the --read-only option so it cannot execute this statement   (test01@172.32.1.200) [data03]> update t01 set id1=id1+30 where id1=3;   ERROR 1290 (HY000): The MySQL server is running with the --read-only option so it cannot execute this statement   (test01@172.32.1.200) [data03]> insert into t01(id1,a1,b1) values(9,9,9);   ERROR 1290 (HY000): The MySQL server is running with the --read-only option so it cannot execute this statement   (test01@172.32.1.200) [data03]>    (test01@172.32.1.200) [data03]> select * from t01;   +-----+------+------+   | id1 | a1   | b1   |   +-----+------+------+   |   1 |    1 |    1 |   |   2 |    2 |    2 |   |   4 |    4 |    4 |   |   5 |    5 |    5 |   |   6 |    6 |    6 |   +-----+------+------+   5 rows in set (0.00 sec)      (test01@172.32.1.200) [data03]>

實(shí)驗(yàn)二:設(shè)定了全局讀寫后,具有super權(quán)限的用戶進(jìn)行數(shù)據(jù)修改后,也會(huì)提示錯(cuò)誤ERROR 1223:

view plain copy mysql> use data03;   Reading table information for completion of table and column names   You can turn off this feature to get a quicker startup with -A      Database changed   mysql> show tables;   +------------------+   | Tables_in_data03 |   +------------------+   | t01              |   | t02              |   | user             |   +------------------+   3 rows in set (0.00 sec)      mysql> select * from t01;   +-----+------+------+   | id1 | a1   | b1   |   +-----+------+------+   |   1 |    1 |    1 |   |   2 |    2 |    2 |   |   4 |    4 |    4 |   |   5 |    5 |    5 |   |   6 |    6 |    6 |   +-----+------+------+   5 rows in set (0.00 sec)      mysql>    mysql>  show global variables like "%read_only%";   +------------------+-------+   | Variable_name    | Value |   +------------------+-------+   | innodb_read_only | OFF   |   | read_only        | ON    |   | tx_read_only     | OFF   |   +------------------+-------+   3 rows in set (0.00 sec)      mysql>    mysql>    mysql> insert into t01(id1,a1,b1) values(8,8,8);          Query OK, 1 row affected (0.00 sec)      mysql> update t01 set a1=a1+10 where id1=2;   Query OK, 1 row affected (0.00 sec)   Rows matched: 1  Changed: 1  Warnings: 0      mysql> delete from t01 where id1=4;   Query OK, 1 row affected (0.00 sec)      mysql> select * from t01;   +-----+------+------+   | id1 | a1   | b1   |   +-----+------+------+   |   1 |    1 |    1 |   |   2 |   12 |    2 |   |   5 |    5 |    5 |   |   6 |    6 |    6 |   |   8 |    8 |    8 |   +-----+------+------+   5 rows in set (0.00 sec)      mysql>    mysql> flush tables with read lock;   Query OK, 0 rows affected (0.00 sec)      mysql>    mysql> insert into t01(id1,a1,b1) values(9,9,9);   ERROR 1223 (HY000): Can't execute the query because you have a conflicting read lock   mysql>    mysql> update t01 set a1=a1+10 where id1=5;   ERROR 1223 (HY000): Can't execute the query because you have a conflicting read lock   mysql>    mysql> delete from t01 where id1=5;   ERROR 1223 (HY000): Can't execute the query because you have a conflicting read lock   mysql>    mysql>

實(shí)驗(yàn)三:MySQL從庫(kù)設(shè)定read_only=1后主從同步正常,設(shè)定表讀鎖后,不能同步,解除讀鎖后,主從同步恢復(fù)。

 copy

  1. mysql>

  2. mysql> show databases;

  3. +--------------------+

  4. | Database           |

  5. +--------------------+

  6. | information_schema |

  7. | bitvc              |

  8. | data03             |

  9. | ga                 |

  10. | jiradb             |

  11. | meibi              |

  12. | meibi02            |

  13. | mysql              |

  14. | performance_schema |

  15. | sbtest             |

  16. +--------------------+

  17. 10 rows in set (0.00 sec)

  18. mysql>

  19. mysql>

  20. mysql>

  21. mysql>  show global variables like "%read_only%";

  22. +------------------+-------+

  23. | Variable_name    | Value |

  24. +------------------+-------+

  25. | innodb_read_only | OFF   |

  26. | read_only        | ON    |

  27. | tx_read_only     | OFF   |

  28. +------------------+-------+

  29. 3 rows in set (0.00 sec)

  30. mysql>

  31. mysql> show slave status\G

  32. *************************** 1. row ***************************

  33.                Slave_IO_State: Waiting for master to send event

  34.                   Master_Host: 172.32.1.200

  35.                   Master_User: repl

  36.                   Master_Port: 3307

  37.                 Connect_Retry: 60

  38.               Master_Log_File: mysql-bin.000009

  39.           Read_Master_Log_Pos: 5853

  40.                Relay_Log_File: huobiDBtest-relay-bin.000002

  41.                 Relay_Log_Pos: 6016

  42.         Relay_Master_Log_File: mysql-bin.000009

  43.              Slave_IO_Running: Yes

  44.             Slave_SQL_Running: Yes

  45.               Replicate_Do_DB:

  46.           Replicate_Ignore_DB:

  47.            Replicate_Do_Table:

  48.        Replicate_Ignore_Table:

  49.       Replicate_Wild_Do_Table:

    1.   Replicate_Wild_Ignore_Table:

  50.                    Last_Errno: 0

  51.                    Last_Error:

  52.                  Skip_Counter: 0

  53.           Exec_Master_Log_Pos: 5853

  54.               Relay_Log_Space: 6195

  55.               Until_Condition: None

  56.                Until_Log_File:

  57.                 Until_Log_Pos: 0

  58.            Master_SSL_Allowed: No

  59.            Master_SSL_CA_File:

  60.            Master_SSL_CA_Path:

  61.               Master_SSL_Cert:

  62.             Master_SSL_Cipher:

  63.                Master_SSL_Key:

  64.         Seconds_Behind_Master: 0

  65. Master_SSL_Verify_Server_Cert: No

  66.                 Last_IO_Errno: 0

  67.                 Last_IO_Error:

  68.                Last_SQL_Errno: 0

  69.                Last_SQL_Error:

  70.         Replicate_Ignore_Server_Ids:

  71.       Master_Server_Id: 2003307

  72.       Master_UUID: 6f68eea7-76e9-11e4-8f99-00221904cd5d

  73.       Master_Info_File: /data/mysqldata/3308/data/master.info

  74.       SQL_Delay: 0

  75.       SQL_Remaining_Delay: NULL

  76.   Slave_SQL_Running_State: Slave has read all relay log; waiting for the slave I/O thread to update it

  77.      Master_Retry_Count: 86400

  78.      Master_Bind:

  79.      Last_IO_Error_Timestamp:

  80.      Last_SQL_Error_Timestamp:

  81.        Master_SSL_Crl:

  82.            Master_SSL_Crlpath:

  83.            Retrieved_Gtid_Set:

  84.             Executed_Gtid_Set:

  85.         Auto_Position: 0

  86. 1 row in set (0.00 sec)

  87. mysql>

  88. mysql> flush tables with read lock;

  89. Query OK, 0 rows affected (0.00 sec)

  90. mysql> show slave status\G

  91. *************************** 1. row ***************************

  92.                Slave_IO_State: Waiting for master to send event

  93.                   Master_Host: 172.32.1.200

  94.                   Master_User: repl

  95.                   Master_Port: 3307

  96.                 Connect_Retry: 60

  97.      Master_Log_File: mysql-bin.000009

  98.           Read_Master_Log_Pos: 6531

  99.                Relay_Log_File: huobiDBtest-relay-bin.000002

  100.                 Relay_Log_Pos: 6016

  101.         Relay_Master_Log_File: mysql-bin.000009

  102.              Slave_IO_Running: Yes

  103.             Slave_SQL_Running: Yes

  104.               Replicate_Do_DB:

  105.           Replicate_Ignore_DB:

  106.            Replicate_Do_Table:

  107.        Replicate_Ignore_Table:

  108.       Replicate_Wild_Do_Table:

  109.       Replicate_Wild_Ignore_Table:

  110.       Last_Errno: 0

  111.          Last_Error:

    1.   Skip_Counter: 0

  112.          Exec_Master_Log_Pos: 5853

  113.              Relay_Log_Space: 6873

  114.               Until_Condition: None

  115.                Until_Log_File:

  116.                 Until_Log_Pos: 0

  117.            Master_SSL_Allowed: No

  118.            Master_SSL_CA_File:

  119.            Master_SSL_CA_Path:

  120.               Master_SSL_Cert:

  121.             Master_SSL_Cipher:

  122.                Master_SSL_Key:

  123.         Seconds_Behind_Master: 120

  124. Master_SSL_Verify_Server_Cert: No

  125.                 Last_IO_Errno: 0

  126.                 Last_IO_Error:

  127.                Last_SQL_Errno: 0

  128.                Last_SQL_Error:

  129.   Replicate_Ignore_Server_Ids:

  130.              Master_Server_Id: 2003307

    1.        Master_UUID: 6f68eea7-76e9-11e4-8f99-00221904cd5d

  131.          Master_Info_File: /data/mysqldata/3308/data/master.info

  132.          SQL_Delay: 0

  133.           SQL_Remaining_Delay: NULL

  134.       Slave_SQL_Running_State: Waiting for global read lock

  135.        Master_Retry_Count: 86400

  136.        Master_Bind:

  137.       Last_IO_Error_Timestamp:

  138.      Last_SQL_Error_Timestamp:

  139.         Master_SSL_Crl:

  140.         Master_SSL_Crlpath:

  141.            Retrieved_Gtid_Set:

  142.             Executed_Gtid_Set:

  143.                 Auto_Position: 0

  144. 1 row in set (0.00 sec)

  145. mysql>

  146. mysql>

  147. mysql> select * from data03.t01;

  148. +-----+------+------+

  149. | id1 | a1   | b1   |

  150. +-----+------+------+

  151. |   1 |    1 |    1 |

  152. |   2 |    2 |    2 |

  153. |   4 |    4 |    4 |

  154. |   5 |    5 |    5 |

  155. |   6 |    6 |    6 |

  156. +-----+------+------+

  157. 5 rows in set (0.00 sec)

  158. mysql>

  159. mysql> unlock tables;

  160. Query OK, 0 rows affected (0.00 sec)

  161. mysql> show slave status\G

  162. *************************** 1. row ***************************

  163.                Slave_IO_State: Waiting for master to send event

  164.                   Master_Host: 172.32.1.200

  165.                   Master_User: repl

  166.                   Master_Port: 3307

  167.                 Connect_Retry: 60

  168.       Master_Log_File: mysql-bin.000009

  169.           Read_Master_Log_Pos: 6531

  170.                Relay_Log_File: huobiDBtest-relay-bin.000002

  171.                 Relay_Log_Pos: 6694

  172.         Relay_Master_Log_File: mysql-bin.000009

  173.              Slave_IO_Running: Yes

  174.             Slave_SQL_Running: Yes

  175.               Replicate_Do_DB:

  176.           Replicate_Ignore_DB:

  177.            Replicate_Do_Table:

  178.        Replicate_Ignore_Table:

  179.       Replicate_Wild_Do_Table:

  180.   Replicate_Wild_Ignore_Table:

  181.     Last_Errno: 0

        Last_Error:                     Skip_Counter: 0         Exec_Master_Log_Pos: 6531                  Relay_Log_Space: 6873                 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   Master_SSL_Verify_Server_Cert: No                   Last_IO_Errno: 0                   Last_IO_Error:                   Last_SQL_Errno: 0                  Last_SQL_Error:      Replicate_Ignore_Server_Ids:               Master_Server_Id: 2003307              Master_UUID: 6f68eea7-76e9-11e4-8f99-00221904cd5d               Master_Info_File: /data/mysqldata/3308/data/master.info                SQL_Delay: 0             SQL_Remaining_Delay: NULL         Slave_SQL_Running_State: Slave has read all relay log; waiting for the slave I/O thread to update it              Master_Retry_Count: 86400           Master_Bind:          Last_IO_Error_Timestamp:         Last_SQL_Error_Timestamp:                   Master_SSL_Crl:               Master_SSL_Crlpath:               Retrieved_Gtid_Set:                Executed_Gtid_Set:                Auto_Position: 0   1 row in set (0.00 sec)      mysql> select * from data03.t01;   +-----+------+------+   | id1 | a1   | b1   |   +-----+------+------+   |   1 |    1 |    1 |   |   2 |   12 |    2 |   |   5 |    5 |    5 |   |   6 |    6 |    6 |   |   8 |    8 |    8 |   +-----+------+------+   5 rows in set (0.00 sec)

##########################################

.FLUSH TABLES WITH READ LOCK

這個(gè)命令是全局讀鎖定,執(zhí)行了命令之后所有庫(kù)所有表都被鎖定只讀。一般都是用在數(shù)據(jù)庫(kù)聯(lián)機(jī)備份,這個(gè)時(shí)候數(shù)據(jù)庫(kù)的寫操作將被阻塞,讀操作順利進(jìn)行。

解鎖的語(yǔ)句也是unlock tables。

2.LOCK TABLES tbl_name [AS alias] {READ [LOCAL] | [LOW_PRIORITY] WRITE}

這個(gè)命令是表級(jí)別的鎖定,可以定制鎖定某一個(gè)表。例如: lock  tables test read; 不影響其他表的寫操作。

解鎖語(yǔ)句也是unlock tables。

重點(diǎn):

這兩個(gè)語(yǔ)句在執(zhí)行的時(shí)候都需要注意個(gè)特點(diǎn),就是 隱式提交的語(yǔ)句。在退出MySQL終端的時(shí)候都會(huì)隱式的執(zhí)行unlock tables。也就是如果要讓表鎖定生效就必須一直保持對(duì)話。

P.S.  MYSQL的read lock和wirte lock

read-lock:  允許其他并發(fā)的讀請(qǐng)求,但阻塞寫請(qǐng)求,即可以同時(shí)讀,但不允許任何寫。也叫共享鎖

write-lock: 不允許其他并發(fā)的讀和寫請(qǐng)求,是排他的(exclusive)。也叫獨(dú)占鎖

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。


當(dāng)前名稱:mysql只讀模式下數(shù)據(jù)遷移,保證數(shù)據(jù)一致性-創(chuàng)新互聯(lián)
標(biāo)題鏈接:http://weahome.cn/article/dpeiss.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部