MyCAT是MySQL中介軟體,前身是阿里大名鼎鼎的Cobar,Cobar在開源了一段時間後,不了了之。於是MyCAT扛起了這面大旗,在大數據時代,其重要性愈發彰顯。這篇文章主要是MyCAT的入門部署。
一,什麼是mycat
一個徹底開源的,企業應用開發的大資料庫叢集
支援事務、ACID、可以取代MySQL的加強版資料庫
一個可以視為MySQL叢集的企業級資料庫,用來取代昂貴的Oracle叢集
一個融合記憶體快取技術、NoSQL技術、HDFS大數據的新SQL Server
結合傳統資料庫和新型分散式資料倉儲的新一代企業級資料庫產品
一個新穎的資料庫中間件產品
以上是官方說明。其實就是資料庫的連線池。 mysql proxy也是一種連線池,但是效率很低。
二,mycat 安裝
1,下載位址mycat
2,安裝mycat
# tar zxvf Mycat-server-1.6-RELEASE-20161028204710-linux.tar.gz -C /usr/local/
三,設定mycat
1,設定server.xml
# vim /usr/local/mycat/conf/server.xml //添加以下内容 <user name="user"> //mycat用户名 <property name="password">user</property> //mycat密码 <property name="schemas">mytest</property> //mycat虚拟数据库名 <property name="readOnly">true</property> //只读 </user> <user name="tankzhang"> <property name="password">admin</property> <property name="schemas">mytest</property> </user>
在這裡要注意,預設的虛擬資料名稱是TESTDB ,如果schema.xml裡面沒有設定testdb,那就要把testdb改成schema.xml裡面有的虛擬資料名。這裡定義的使用者名稱和密碼,虛擬資料庫名,並不是mysql真實存在的。
2,設定schema.xml
# cat schema.xml <?xml version="1.0"?> <!DOCTYPE mycat:schema SYSTEM "schema.dtd"> <mycat:schema xmlns:mycat="http://io.mycat/"> <schema name="mytest" checkSQLschema="false" sqlMaxLimit="100" dataNode="my1" />//定义虚拟数据库名mytest <dataNode name="my1" dataHost="test1" database="test" /> //真实数据库名test <dataHost name="test1" maxCon="1000" minCon="10" balance="1" writeType="0" dbType="mysql" dbDriver="native" > <heartbeat>select user()</heartbeat> <writeHost host="hostM1" url="192.168.5.213:3306" user="tank" password="123456" > //真实数据库的连接方式 <readHost host="hostS1" url="192.168.5.214:3306" user="tank" password="123456" /> //同上 </writeHost> </dataHost> </mycat:schema>
mycat的設定參數,相當的多。重點說一下balance="1"與writeType="0"
a. balance 屬性負載平衡類型,目前的取值有4 種:
##1. balance="0", 不開啟讀寫分離機制,所有讀取操作都傳送到目前可用的writeHost 上。 2. balance="1",全部的readHost 與stand by writeHost 參與select 語句的負載平衡,簡單的說,當雙主雙從模式(M1 ->S1 , M2->S2 ,且M1 與M2 互為主備),正常情況下, M2,S1,S2 都參與select 語句的負載平衡。 3. balance="2",所有讀取作業都隨機的在 writeHost、 readhost 上分發。 4. balance="3", 所有讀取請求隨機的分發到 wiriterHost 對應的 readhost 執行,writerHost 不負擔讀取壓力,注意 balance=3 只在 1.4 及其以後版本有, 1.3 沒有。 b. writeType 屬性負載平衡類型,目前的取值有3 種:1. writeType="0", 所有寫入作業傳送到設定的第一個writeHost,第一個掛了切到還生存的第二個writeHost,重新啟動後已切換後的為準,切換記錄在2. writeType="1",所有寫入操作都隨機的發送到配置的writeHost。 3. writeType="2",沒實現。 具體參數:http://mycat.io/document/Mycat_V1.6.0.pdf
3,配置主從伺服器,就不在這兒說了,博客中有4,新增真實使用者grant all privileges on test.* to tank@"192.168.%" identified by '123456'; flush privileges
新增使用者。
5,測試真實用戶連接,確保schema.xml中配置的真實用戶,能連接真實的資料庫。注意防火牆。四,啟動mycat
1,常用參數./mycat start 啟動
./mycat s
top 停止./mycat console 前台運行
./mycat restart 重新啟動服務
./mycat pause 暫停
./mycat status 查看啟動
狀態
# ./mycat start Starting Mycat-server... # netstat -tpnl |grep 8066 tcp 0 0 :::8066 :::* LISTEN 31728/java # ./mycat status Mycat-server is running (31726).
五,測試讀寫分離
# mysql -u tankzhang -p -P 8066 -h 127.0.0.1 //一定要带上127.0.0.1 Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.6.29-mycat-1.6-RELEASE-20161028204710 MyCat Server (OpenCloundDB) Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> show databases; +----------+ | DATABASE | +----------+ | mytest | //虚拟数据库 +----------+ 1 row in set (0.00 sec) mysql> use mytest; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A mysql> CREATE TABLE IF NOT EXISTS `user` ( -> `id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'ID', -> `name` varchar(20) NOT NULL DEFAULT '' COMMENT '姓名', -> `create_time` int(10) NOT NULL DEFAULT '0' COMMENT '创建时间', -> PRIMARY KEY (`id`) -> ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; Query OK, 0 rows affected (0.08 sec) Database changed mysql> show tables; +----------------+ | Tables_in_test | +----------------+ | user | +----------------+ 1 row in set (0.01 sec) mysql> INSERT INTO `user` (`id` ,`name`)VALUES ('1', 'tank'); Query OK, 1 row affected (0.00 sec) mysql> select * from user; //修改从数据库的user表中的name,会发现读是从从数据库读取的 +----+-----------+-------------+ | id | name | create_time | +----+-----------+-------------+ | 1 | tankzhang | 0 | +----+-----------+-------------+ 1 row in set (0.01 sec)
六,小結
mycat支援mysql的分表,分片等等,但不建議使用。 mycat支援的集群不多,如果能配合mha使用就比較牛B了。以上是關於mysql的mycat中間件安裝與使用詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!