mysql讀寫分離Amoeba的部署

小亮520cl發表於2015-10-30
Amoeba for MySQL致力於MySQL的分散式資料庫前端代理層,它主要在應用層訪問MySQL的時候充當query 路由功能,專注 分散式資料庫 proxy 開發。座落與Client、DB Server(s)之間。對客戶端透明。具有負載均衡、高可用性、Query過濾、讀寫分離、可路由相關的query到目標資料庫、可併發請求多臺資料庫合併結果。 在Amoeba上面你能夠完成多資料來源的高可用、負載均衡、資料切片的功能。目前在很多企業的生產線上面使用。
這裡使用Amoeba for mysql來實現mysql的讀寫分離,起到緩解主資料庫伺服器的壓力,下面是實現這一方案的架構圖:


硬傷:不支援事務~~~~生產怎麼用?

一:mysql主從複製的搭建

因為讀寫分離,所以一臺負責mysql的寫操作,另一臺負責mysql的讀操作,所以我們這裡使用mysql的主從複製再合適不過了。關於這一配置,請移步:

二:java環境的配置

java環境配置

Amoeba框架是基於Java SE1.5開發的,建議使用Java SE 1.5版本。目前Amoeba經驗證在JavaTM SE 1.5和Java SE 1.6能正常執行,(可能包括其他未經驗證的版本)。
http://blog.itpub.net/29096438/viewspace-1743529/    ---另一篇部落格

三:Amoeba的安裝
Amoeba下載地址:
下面是安裝步驟:

點選(此處)摺疊或開啟

  1. mkdir /usr/local/amoeba
  2. wget http://softlayer.dl.sourceforge.net/project/amoeba/Amoeba%20for%20mysql/2.x/amoeba-mysql-binary-2.1.0-RC5.tar.gz
  3. tar xzf amoeba-mysql-binary-2.1.0-RC5.tar.gz -C /usr/local/amoeba

Amoeba for mysql配置

配置Amoeba for mysql的讀寫分離主要涉及兩個檔案:
1、/usr/local/amoeba/conf/dbServers.xml
此檔案定義由Amoeba代理的資料庫如何連線,比如最基礎的:主機IP、埠、Amoeba使用的使用者名稱和密碼等等。
2、/usr/local/amoeba/conf/amoeba.xml
此檔案定義了Amoeba代理的相關配置。

dbServers.xml檔案配置

abstractServer配置:

  1. 此部分定義真實mysql伺服器的埠,資料庫名稱,mysql使用者及密碼。
  2. <dbServer name="abstractServer" abstractive="true">
  3.                 <factoryConfig class="com.meidusa.amoeba.mysql.net.MysqlServerConnectionFactory">
  4.                         <property name="manager">${defaultManager}</property>
  5.                         <property name="sendBufferSize">64</property>
  6.                         <property name="receiveBufferSize">128</property>
  7.  
  8.                         <!-- mysql port -->
  9.                         <property name="port">3306</property>    ----mysql資料庫的埠
  10.  
  11.                         <!-- mysql schema -->
  12.                         <property name="schema">dbname</property> -----選擇資料庫
  13.  
  14.                         <!-- mysql user -->
  15.                         <property name="user">root</property>     ----連線使用者名稱
  16.   
  17.                         <!-- mysql password -->
  18.                         <property name="password">root</property>     -----連線密碼
  19.  
  20.                 </factoryConfig>
  21.  
  22.                 <poolConfig class="com.meidusa.amoeba.net.poolable.PoolableObjectPool">
  23.                         <property name="maxActive">500</property>
  24.                         <property name="maxIdle">500</property>
  25.                         <property name="minIdle">10</property>
  26.                         <property name="minEvictableIdleTimeMillis">600000</property>
  27.                         <property name="timeBetweenEvictionRunsMillis">600000</property>
  28.                         <property name="testOnBorrow">true</property>
  29.                         <property name="testWhileIdle">true</property>
  30.                 </poolConfig>
  31.         </dbServer>



此部分定義主伺服器,從伺服器,及從伺服器連線池。這裡只定義資料庫地址,它們的使用者及密碼就是上面的abstractServer裡的設定。注意用來連線真實mysql伺服器的使用者必須擁有遠端連線許可權。
  1. <dbServer name="Master" parent="abstractServer">                                   -----主
  2.                 <factoryConfig>
  3.                         <!-- mysql ip -->
  4.                         <property name="ipAddress">192.168.0.1</property>
  5.                 </factoryConfig>
  6.         </dbServer>
  7. <dbServer name="Slave1" parent="abstractServer">                                     ------從1
  8.                 <factoryConfig>
  9.                         <!-- mysql ip -->
  10.                         <property name="ipAddress">192.168.0.2</property>
  11.                 </factoryConfig>
  12.         </dbServer>
  13. <dbServer name="Slave2" parent="abstractServer">                                       ----從2
  14.                 <factoryConfig>
  15.                         <!-- mysql ip -->
  16.                         <property name="ipAddress">192.168.0.3</property>
  17.                 </factoryConfig>
  18.         </dbServer>
  19.         <dbServer name="virtualSlave" virtual="true">
  20.                 <poolConfig class="com.meidusa.amoeba.server.MultipleServerPool">
  21.                         <!-- Load balancing strategy: 1=ROUNDROBIN , 2=WEIGHTBASED , 3=HA-->
  22.                         <property name="loadbalance">1</property>
  23.  
  24.                         <!-- Separated by commas,such as: server1,server2,server1 -->
  25.                         <property name="poolNames">Slave1,Slave2</property>      ---salve1 slave2放入virtualslave連線池
  26.                 </poolConfig>
  27.         </dbServer>






amoeba.xml配置

amoeba連線驗證配置:

  1. 這裡定義連線amoeba時用來驗證的使用者及密碼。
  2. <property name="authenticator">
  3.                                 <bean class="com.meidusa.amoeba.mysql.server.MysqlClientAuthenticator">
  4.  
  5.                                         <property name="user">root</property>
  6.                                         
  7.                                         <property name="password">ESBecs00</property>
  8.  
  9.                                         <property name="filter">
  10.                                                 <bean class="com.meidusa.amoeba.server.IPAccessController">
  11.                                                         <property name="ipFile">${amoeba.home}/conf/access_list.conf</property>
  12.                                                 </bean>
  13.                                         </property>
  14.                                 </bean>
  15.                         </property>


讀寫分離配置:
  1.                 <property name="defaultPool">Master</property>
  2.                 <property name="writePool">Master</property>
  3.                 <property name="readPool">virtualSlave</property>          -----連線池
defaultPool:配置了預設的資料庫節點,一些除了SELECT\UPDATE\INSERT\DELETE的語句都會在defaultPool執行。
writePool :配置了資料庫寫庫,通常配為Master,如這裡就配置為之前定義的Master資料庫。
readPool :配置了資料庫讀庫,通常配為Slave或者Slave組成的資料庫池,如這裡就配置之前的virtualSlave資料庫池。


四:啟動Amobe

啟動命令:

  1. amoeba start

此命令以前臺的方式啟動,會輸出啟動時的資訊,檢查沒有錯誤資訊後,中斷,並後臺執行:

  1. amoeba start &


五:執行及驗證


  1. 透過這個命令在test資料庫中建立了STAFF表,這裡連線的是真實的MySQL資料庫。
  2. $ mysql -uroot -ppassword -h127.0.0.1 -P3306
  3. Welcome to the MySQL monitor. Commands end with ; or \g.
  4. Your MySQL connection id is 125
  5. Server version: 5.5.9 MySQL Community Server (GPL)

  6. Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.

  7. Oracle is a registered trademark of Oracle Corporation and/or its
  8. affiliates. Other names may be trademarks of their respective
  9. owners.

  10. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

  11. mysql> create table `test`.`staff`( 1
  12.     -> `ID` int NOT NULL AUTO_INCREMENT,
  13.     -> `NAME` varchar(10),
  14.     -> PRIMARY KEY (`ID`)
  15.     -> );
  16. Query OK, 0 rows affected (0.00 sec)
  17. mysql> use test
  18. Database changed
  19. mysql> show tables;
  20. +----------------+
  21. | Tables_in_test |
  22. +----------------+
  23. | staff |
  24. +----------------+
  25. 1 row in set (0.00 sec)

透過amoeba連線mysql
  1. 啟動Amoeba後這次透過mysql客戶端來連線Amoeba,注意埠從真實的MySQL埠3306改為Amoeba埠8066:
  2. $ mysql -uroot -ppassword -h127.0.0.1 -P8066
  3. Welcome to the MySQL monitor. Commands end with ; or \g.
  4. Your MySQL connection id is 27778511
  5. Server version: 5.1.45-mysql-amoeba-proxy-2.0.1-BETA MySQL Community Server (GPL)1  ----透過Server version可以得知連線的是Amoeba例項而不是MySQL例項

  6. Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.

  7. Oracle is a registered trademark of Oracle Corporation and/or its
  8. affiliates. Other names may be trademarks of their respective
  9. owners.

  10. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

  11. mysql> use test;
  12. Database changed
  13. mysql> INSERT INTO test.staff (ID, NAME)2
  14.     -> VALUES (12345, 'Daisy Li.');
  15. Query OK, 1 row affected (0.03 sec)

  16. mysql> SELECT * FROM test.staff LIMIT 0, 50;3
  17. +-------+-----------+
  18. | ID | NAME |
  19. +-------+-----------+
  20. | 12345 | Daisy Li. |
  21. +-------+-----------+
  22. 1 row in set (0.00 sec)

  23. mysql>





原文地址:

http://www.cnblogs.com/lhj588/archive/2012/11/19/2777897.html

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29096438/viewspace-1819139/,如需轉載,請註明出處,否則將追究法律責任。

相關文章