不是所有公司都適用這類架構(gòu)娶靡,如果公司規(guī)模小高可用主從就可以了,像阿里這樣的公司或者更大得可以考慮
3. MyCAT安裝
3.0 介紹
開源組織和社區(qū)開發(fā)人員看锉,在淘寶cober(TDDL)基礎(chǔ)上二次開發(fā)姿锭。
3.1 預(yù)先安裝Java運行環(huán)境
yum install -y java
3.2下載
Mycat-server-xxxxx.linux.tar.gz
http://dl.mycat.io/
3.3 解壓文件
tar xf Mycat-server-*
3.4 軟件目錄結(jié)構(gòu)
ls
bin? catlet? conf? lib? logs? version.txt
3.5 啟動和連接
3.5.1 配置環(huán)境變量
vim /etc/profile
export PATH=/data/app/mycat/bin:$PATH
source /etc/profile
3.5.2 啟動
mycat start
3.5.3 連接mycat:
mysql -uroot -p123456 -h 127.0.0.1 -P8066
4. 配置文件介紹
4.1 bin 目錄
程序目錄
4.2 conf
配置文件目錄
4.2.1 schema.xml
主配置文件:節(jié)點信息聪轿、讀寫分離缀皱、高可用設(shè)置、調(diào)用分片策略..
4.2.2 rule.xml
分片策略的定義趁仙、功能腔寡、使用用方法
4.2.3 server.xml
mycat服務(wù)有關(guān)配置: 用戶焚鲜、網(wǎng)絡(luò)、權(quán)限放前、策略忿磅、資源...
4.2.4 xx.txt文件
分片參數(shù)定義文件
4.2.5 log4j2.xml
Mycat 相關(guān)日志記錄配置
4.3 logs
wrapper.log : 啟動日志?
mycat.log? :工作日志
========================
++++++Mycat核心應(yīng)用+++++++
1.? schema.xml配置文件結(jié)構(gòu)
[root@db01 conf]# cd /data/mycat/conf/
mv schema.xml schema.xml.bak
vim schema.xml
# 邏輯庫:
<schema name="TESTDB" checkSQLschema="false" sqlMaxLimit="100" dataNode="dn1">
</schema>?
# DN數(shù)據(jù)節(jié)點(邏輯分片):數(shù)據(jù)節(jié)點(邏輯分片):
? ? <dataNode name="dn1" dataHost="localhost1" database= "world" />?
作用:
垂直和水平查分。
# DH 數(shù)據(jù)主機
作用: 高可用和讀寫分離
? ? <dataHost name="localhost1" maxCon="1000" minCon="10" balance="1"? writeType="0" dbType="mysql"? dbDriver="native" switchType="1">
? ? ? ? <heartbeat>select user()</heartbeat>?
? ? <writeHost host="db1" url="10.0.0.51:3307" user="root" password="123">
? ? ? ? ? ? <readHost host="db2" url="10.0.0.51:3309" user="root" password="123" />
? ? </writeHost>
? ? </dataHost>?
</mycat:schema>
====================================
<?xml version="1.0"?>?
<!DOCTYPE mycat:schema SYSTEM "schema.dtd">?
<mycat:schema xmlns:mycat="http://io.mycat/">
# 1.邏輯庫配置
<schema name="TESTDB" checkSQLschema="false" sqlMaxLimit="100" dataNode="dn1">
</schema>?
# 2. DN凭语,分片定義
? ? <dataNode name="dn1" dataHost="localhost1" database= "world" />?
#3. DH節(jié)點定義
? ? <dataHost name="localhost1" maxCon="1000" minCon="10" balance="1"? writeType="0" dbType="mysql"? dbDriver="native" switchType="1">
? ? ? ? <heartbeat>select user()</heartbeat>?
? ? <writeHost host="db1" url="10.0.0.51:3307" user="root" password="123">
? ? ? ? ? ? <readHost host="db2" url="10.0.0.51:3309" user="root" password="123" />
? ? </writeHost>
? ? </dataHost>?
</mycat:schema>
==================配置文件模板============================
<?xml version="1.0"?>?
<!DOCTYPE mycat:schema SYSTEM "schema.dtd">?
<mycat:schema xmlns:mycat="http://io.mycat/">
<schema name="TESTDB" checkSQLschema="false" sqlMaxLimit="100" dataNode="dn1">
</schema>?
? ? <dataNode name="dn1" dataHost="localhost1" database= "world" />?
? ? <dataHost name="localhost1" maxCon="1000" minCon="10" balance="1"? writeType="0" dbType="mysql"? dbDriver="native" switchType="1">
? ? ? ? <heartbeat>select user()</heartbeat>?
? ? <writeHost host="db1" url="10.0.0.51:3307" user="root" password="123">
? ? ? ? ? ? <readHost host="db2" url="10.0.0.51:3309" user="root" password="123" />
? ? </writeHost>
? ? </dataHost>?
</mycat:schema>
===========================================================
2. 測試環(huán)境準(zhǔn)備
db01:
mysql -S /data/3307/mysql.sock -e "grant all on *.* to root@'10.0.0.%' identified by '123';"
mysql -S /data/3307/mysql.sock -e? "source /root/world.sql"
mysql -S /data/3308/mysql.sock -e "grant all on *.* to root@'10.0.0.%' identified by '123';"
mysql -S /data/3308/mysql.sock -e? "source /root/world.sql"
重啟mycat
mycat restart
3.? 讀寫分離測試
# 連接mycat 服務(wù)
[root@db01 ~]# mysql -uroot -p123456 -h 10.0.0.51 -P8066
# 測試讀
mysql> select @@server_id;
# 測試寫
mysql> begin ; select @@server_id;commit;
4. 配置讀寫分離及高可用
[root@db01 conf]# mv schema.xml schema.xml.rw
[root@db01 conf]# vim schema.xml
<?xml version="1.0"?>?
<!DOCTYPE mycat:schema SYSTEM "schema.dtd">?
<mycat:schema xmlns:mycat="http://io.mycat/">
<schema name="TESTDB" checkSQLschema="false" sqlMaxLimit="100" dataNode="sh1">
</schema>?
? ? <dataNode name="sh1" dataHost="oldguo1" database= "world" />?
? ? <dataHost name="oldguo1" maxCon="1000" minCon="10" balance="1"? writeType="0" dbType="mysql"? dbDriver="native" switchType="1">
? ? ? ? <heartbeat>select user()</heartbeat>?
? ? <writeHost host="db1" url="10.0.0.51:3307" user="root" password="123">
? ? ? ? ? ? <readHost host="db2" url="10.0.0.51:3309" user="root" password="123" />
? ? </writeHost>
? ? <writeHost host="db3" url="10.0.0.52:3307" user="root" password="123">
? ? ? ? ? ? <readHost host="db4" url="10.0.0.52:3309" user="root" password="123" />
? ? </writeHost>? ? ? ?
? ? </dataHost>?
</mycat:schema>
primary? writehost? ? :負(fù)責(zé)寫操作的writehost?
standby? writeHost? ? :和readhost一樣葱她,只提供讀服務(wù)
當(dāng)寫節(jié)點宕機后,后面跟的readhost也不提供服務(wù)似扔,這時候standby的writehost就提供寫服務(wù)吨些,
后面跟的readhost提供讀服務(wù)
測試讀寫分離:
mycat restart
mysql -uroot -p123456 -h 10.0.0.51? -P 8066
mysql> select @@server_id;
mysql> begin;select @@server_id;commit;
測試高可用:
[root@db01 conf]# systemctl stop mysqld3307
mysql -uroot -p123456 -h 10.0.0.51? -P 8066
mysql> select @@server_id;
mysql> begin;select @@server_id;commit;
[root@db01 conf]# systemctl start mysqld3307
mysql -uroot -p123456 -h 10.0.0.51? -P 8066
mysql> select @@server_id;
mysql> begin;select @@server_id;commit;
5.? 參數(shù)介紹
5.1 balance屬性
讀操作負(fù)載均衡類型搓谆,目前的取值有3種:
1. balance="0", 不開啟讀寫分離機制,所有讀操作都發(fā)送到當(dāng)前可用的writeHost上豪墅。
2. balance="1"泉手,全部的readHost與standby writeHost參與select語句的負(fù)載均衡,簡單的說偶器,
? 當(dāng)雙主雙從模式(M1->S1斩萌,M2->S2,并且M1與 M2互為主備)状囱,正常情況下术裸,M2,S1,S2都參與select語句的負(fù)載均衡。
3. balance="2"亭枷,所有讀操作都隨機的在writeHost袭艺、readhost上分發(fā)。
5.2 writeType屬性
寫操作叨粘,負(fù)載均衡類型猾编,目前的取值有2種:
1. writeType="0", 所有寫操作發(fā)送到配置的第一個writeHost,
第一個掛了切到還生存的第二個writeHost升敲,重新啟動后已切換后的為主答倡,切換記錄在配置文件中:dnindex.properties .
2. writeType=“1”,所有寫操作都隨機的發(fā)送到配置的writeHost驴党,但不推薦使用
5.3 switchType屬性
-1 表示不自動切換
1 默認(rèn)值瘪撇,自動切換
2 基于MySQL主從同步的狀態(tài)決定是否切換 ,心跳語句為 show slave status
datahost其他配置
5.4? 連接有關(guān)
maxCon="1000":最大的并發(fā)連接數(shù)
minCon="10" :mycat在啟動之后港庄,會在后端節(jié)點上自動開啟的連接線程
5.5 tempReadHostAvailable="1"
這個一主一從時(1個writehost倔既,1個readhost時),可以開啟這個參數(shù)鹏氧,如果2個writehost渤涌,2個readhost時
<heartbeat>select user()</heartbeat>? 監(jiān)測心跳
6.? Mycat 分布式架構(gòu)--垂直分表
taobao? user (sh1),order_t(sh2)? ,others(sh3)
cd /data/app/mycat/conf
mv? schema.xml? schema.xml.ha
vim schema.xml
<?xml version="1.0"?>
<!DOCTYPE mycat:schema SYSTEM "schema.dtd">
<mycat:schema xmlns:mycat="http://io.mycat/">
<schema name="TESTDB" checkSQLschema="false" sqlMaxLimit="100" dataNode="sh1">
? ? ? ? <table name="user" dataNode="sh1"/>
? ? ? ? <table name="order_t" dataNode="sh2"/>
</schema>
? ? <dataNode name="sh1" dataHost="oldguo1" database= "taobao" />
? ? <dataNode name="sh2" dataHost="oldguo2" database= "taobao" />
<dataNode name="sh3" dataHost="oldguo3" database= "taobao" />
? ? <dataHost name="oldguo1" maxCon="1000" minCon="10" balance="1"? writeType="0" dbType="mysql"? dbDriver="native" switchType="1">
? ? ? ? <heartbeat>select user()</heartbeat>
? ? <writeHost host="db1" url="10.0.0.51:3307" user="root" password="123">
? ? ? ? ? ? <readHost host="db2" url="10.0.0.51:3309" user="root" password="123" />
? ? </writeHost>
? ? <writeHost host="db3" url="10.0.0.52:3307" user="root" password="123">
? ? ? ? ? ? <readHost host="db4" url="10.0.0.52:3309" user="root" password="123" />
? ? </writeHost>
? ? </dataHost>
? ? <dataHost name="oldguo2" maxCon="1000" minCon="10" balance="1"? writeType="0" dbType="mysql"? dbDriver="native" switchType="1">
? ? ? ? <heartbeat>select user()</heartbeat>
? ? <writeHost host="db1" url="10.0.0.51:3308" user="root" password="123">
? ? ? ? ? ? <readHost host="db2" url="10.0.0.51:3310" user="root" password="123" />
? ? </writeHost>
? ? <writeHost host="db3" url="10.0.0.52:3308" user="root" password="123">
? ? ? ? ? ? <readHost host="db4" url="10.0.0.52:3310" user="root" password="123" />
? ? </writeHost>
? ? </dataHost>
</mycat:schema>
創(chuàng)建測試庫和表:
mysql -S /data/3307/mysql.sock -e "create database taobao charset utf8;"
mysql -S /data/3308/mysql.sock -e "create database taobao charset utf8;"
mysql -S /data/3307/mysql.sock -e "use taobao;create table user(id int,name varchar(20))";
mysql -S /data/3308/mysql.sock -e "use taobao;create table order_t(id int,name varchar(20))"
# 重啟mycat
mycat restart
# mycat中對user? 和 order 數(shù)據(jù)插入
mysql -uroot -p123456 -h 10.0.0.51? -P 8066
insert into user values(1,'a');
insert into user values(2,'b');
insert into user values(3,'c');
commit;
insert into order_t values(1,'x'),(2,'y');
commit;
[root@db01 conf]# mysql -S /data/3307/mysql.sock -e "show tables from taobao"
+------------------+
| Tables_in_taobao |
+------------------+
| user? ? ? ? ? ? |
+------------------+
[root@db01 conf]# mysql -S /data/3308/mysql.sock -e "show tables from taobao"
+------------------+
| Tables_in_taobao |
+------------------+
| order_t? ? ? ? ? |
+------------------+
[root@db01 conf]# mysql -S /data/3307/mysql.sock -e "select * from taobao.user"
+------+------+
| id? | name |
+------+------+
|? ? 1 | a? ? |
|? ? 2 | b? ? |
|? ? 3 | c? ? |
+------+------+
[root@db01 conf]# mysql -S /data/3308/mysql.sock -e "select * from taobao.order_t"
+------+------+
| id? | name |
+------+------+
|? ? 1 | x? ? |
|? ? 2 | y? ? |
+------+------+
[root@db01 conf]#
7.? Mycat 分布式架構(gòu)--水平拆分
7.0 重要概念
# 1. 分片策略 :幾乎融合經(jīng)典業(yè)務(wù)中大部分的分片策略把还。Mycat已經(jīng)開發(fā)了相應(yīng)算法实蓬,非常方便調(diào)用。
范圍分片
取模
枚舉
日期
HASH
等吊履。
? 分片鍵: 作為分片條件的列安皱。
7.1 范圍分片
比如說t3表
(1)行數(shù)非常多,2000w(1-1000w:sh1? 1000w01-2000w:sh2)
(2)訪問非常頻繁率翅,用戶訪問較離散
# 1. 修改schema.xml文件练俐,定制分片策略
cp schema.xml schema.xml.1?
vim schema.xml
添加:
<table name="t3" dataNode="sh1,sh2" rule="auto-sharding-long" />
# 2. 定義和使用分片策略
vim rule.xml
<tableRule name="auto-sharding-long">
? ? ? ? ? ? ? ? <rule>
? ? ? ? ? ? ? ? ? ? ? ? <columns>id</columns>
? ? ? ? ? ? ? ? ? ? ? ? <algorithm>rang-long</algorithm>
? ? ? ? ? ? ? ? </rule>? ?
<function name="rang-long"
? ? class="io.mycat.route.function.AutoPartitionByLong">
? ? <property name="mapFile">autopartition-long.txt</property>
</function>
# 3.? 定義范圍
vim autopartition-long.txt
0-10=0
10-20=1
4. 創(chuàng)建測試表:
mysql -S /data/3307/mysql.sock -e "use taobao;create table t3 (id int not null primary key auto_increment,name varchar(20) not null);"
mysql -S /data/3308/mysql.sock? -e "use taobao;create table t3 (id int not null primary key auto_increment,name varchar(20) not null);"
5. 測試:
重啟mycat
mycat restart
mysql -uroot -p123456 -h 10.0.0.51 -P 8066
insert into t3(id,name) values(1,'a');
insert into t3(id,name) values(2,'b');
insert into t3(id,name) values(3,'c');
insert into t3(id,name) values(4,'d');
insert into t3(id,name) values(11,'aa');
insert into t3(id,name) values(12,'bb');
insert into t3(id,name) values(13,'cc');
insert into t3(id,name) values(14,'dd');
[root@db01 conf]# mysql -S /data/3308/mysql.sock? -e "select * from taobao.t3"
[root@db01 conf]# mysql -S /data/3307/mysql.sock? -e "select * from taobao.t3"
7.2 取模分片
1%3 1
2%3 2
3%3 0
4%3 1
任何正整數(shù)數(shù)字和N(正整數(shù))取模,得的值永遠(yuǎn)都是 0~N-1
id % 分片數(shù)量取模
N? % 5? =? 0-4? idx
取余分片方式:分片鍵(一個列)與節(jié)點數(shù)量進行取余冕臭,得到余數(shù)腺晾,將數(shù)據(jù)寫入對應(yīng)節(jié)點
# 1.? 修改配置文件
vim schema.xml
<table name="t4" dataNode="sh1,sh2" rule="mod-long" />
# 2. 查看和定義分片使用
vim rule.xml
<property name="count">2</property>
# 3. 準(zhǔn)備測試環(huán)境
創(chuàng)建測試表:
mysql -S /data/3307/mysql.sock -e "use taobao;create table t4 (id int not null primary key auto_increment,name varchar(20) not null);"
mysql -S /data/3308/mysql.sock -e "use taobao;create table t4 (id int not null primary key auto_increment,name varchar(20) not null);"
重啟mycat
mycat restart
# 4. 測試:
mysql -uroot -p123456 -h10.0.0.51 -P8066
use TESTDB
insert into t4(id,name) values(1,'a');
insert into t4(id,name) values(2,'b');
insert into t4(id,name) values(3,'c');
insert into t4(id,name) values(4,'d');
insert into t4(id,name) values(6,'x'),(8,'y'),(10,'z');
分別登錄后端節(jié)點查詢數(shù)據(jù)
mysql -S /data/3308/mysql.sock? -e "select * from taobao.t4"
mysql -S /data/3307/mysql.sock? -e "select * from taobao.t4"
7.3 枚舉分片
t5 表
id name telnum
1? bj? 1212
2? sh? 22222
3? bj? 3333
4? sh? 44444
5? bj? 5555
sharding-by-intfile
# 1.? 設(shè)計分片策略
vim schema.xml
<table name="t5" dataNode="sh1,sh2" rule="sharding-by-intfile" />
# 2. 應(yīng)用分片策略
vim rule.xml
? ? ? ? <tableRule name="sharding-by-intfile">
? ? ? ? ? ? ? ? <rule>
? ? ? ? ? ? ? ? ? ? ? ? <columns>name</columns>
? ? ? ? ? ? ? ? ? ? ? ? <algorithm>hash-int</algorithm>
? ? ? ? ? ? ? ? </rule>
? ? ? ? </tableRule>
<function name="hash-int" class="org.opencloudb.route.function.PartitionByFileMap">
<property name="mapFile">partition-hash-int.txt</property>
? <property name="type">1</property>
</function>
vim? partition-hash-int.txt 配置:
bj=0
sh=1
DEFAULT_NODE=1
# 3. 準(zhǔn)備測試環(huán)境
mysql -S /data/3307/mysql.sock -e "use taobao;create table t5 (id int not null primary key auto_increment,name varchar(20) not null);"
mysql -S /data/3308/mysql.sock -e "use taobao;create table t5 (id int not null primary key auto_increment,name varchar(20) not null);"
重啟mycat
mycat restart
# 4. 插入測試數(shù)據(jù):?
mysql -uroot -p123456 -h10.0.0.51 -P8066
use TESTDB
insert into t5(id,name) values(1,'bj');
insert into t5(id,name) values(2,'sh');
insert into t5(id,name) values(3,'bj');
insert into t5(id,name) values(4,'sh');
insert into t5(id,name) values(5,'tj');
mysql -S /data/3308/mysql.sock? -e "select * from taobao.t5"
mysql -S /data/3307/mysql.sock? -e "select * from taobao.t5"
7.4? Mycat全局表
a? b? c? d? .....
join
t
a?
id? name? age
1? ? zs? ? 18? sh1
id? ? addr? aid
1001? bj? ? 1
1002? sh? ? 2
2? ? ls? ? 19? sh2
id? ? addr? aid
1001? bj? ? 1
1002? sh? ? 2
t
id? ? addr? aid
1001? bj? ? 1
1002? sh? ? 2
使用場景:
如果你的業(yè)務(wù)中有些數(shù)據(jù)類似于數(shù)據(jù)字典燕锥,比如配置文件的配置,
常用業(yè)務(wù)的配置或者數(shù)據(jù)量不大很少變動的表悯蝉,這些表往往不是特別大归形,
而且大部分的業(yè)務(wù)場景都會用到,那么這種表適合于Mycat全局表鼻由,無須對數(shù)據(jù)進行切分暇榴,
要在所有的分片上保存一份數(shù)據(jù)即可,Mycat 在Join操作中蕉世,業(yè)務(wù)表與全局表進行Join聚合會優(yōu)先選擇相同分片內(nèi)的全局表join蔼紧,
避免跨庫Join,在進行數(shù)據(jù)插入操作時狠轻,mycat將把數(shù)據(jù)分發(fā)到全局表對應(yīng)的所有分片執(zhí)行奸例,在進行數(shù)據(jù)讀取時候?qū)S機獲取一個節(jié)點讀取數(shù)據(jù)。
# 1. 設(shè)置全局表策略
vim schema.xml
<table name="t_area" primaryKey="id"? type="global" dataNode="sh1,sh2" />
# 2. 后端數(shù)據(jù)準(zhǔn)備
mysql -S /data/3307/mysql.sock -e "use taobao;create table t_area (id int not null primary key auto_increment,name varchar(20) not null);"
mysql -S /data/3308/mysql.sock -e "use taobao;create table t_area (id int not null primary key auto_increment,name varchar(20) not null);"
重啟mycat
mycat restart
# 3. 測試:
mysql -uroot -p123456 -h10.0.0.51 -P8066
use TESTDB
insert into t_area(id,name) values(1,'a');
insert into t_area(id,name) values(2,'b');
insert into t_area(id,name) values(3,'c');
insert into t_area(id,name) values(4,'d');
mysql -S /data/3308/mysql.sock? -e "select * from taobao.t_area"
mysql -S /data/3307/mysql.sock? -e "select * from taobao.t_area"
7.5 E-R分片
a
join
b
on? a.xx =b.yy
a? ? ? ?
id? name? ? ? ? ? ?
1? a? ? ? sh1
3? c?
2? b? ? ? sh2
4? d?
b
id? addr? aid
1001? bj? 1? ? ? ? sh1?
1002? sh? 2
1003? tj? 3? ? ? ? sh2
1004? wh? 4
為了防止跨分片join向楼,可以使用E-R模式
<table name="a" dataNode="sh1,sh2" rule="mod-long">
? ? ? <childTable name="b" joinKey="aid" parentKey="id" />
</table>
select * from a join b on a.id = b.aid where a.name=d
例子:
1. 修改配置文件
vim schema.xml
<table name="a" dataNode="sh1,sh2" rule="mod-long_oldguo">
? ? ? <childTable name="b" joinKey="aid" parentKey="id" />
</table>
2. 修改rule.xml mod-log分片策略:
vim rule.xml
? ? ? ? <tableRule name="mod-long_oldguo">
? ? ? ? ? ? ? ? <rule>
? ? ? ? ? ? ? ? ? ? ? ? <columns>id</columns>
? ? ? ? ? ? ? ? ? ? ? ? <algorithm>mod-long_oldguo</algorithm>
? ? ? ? ? ? ? ? </rule>
? ? ? ? </tableRule>
? ? ? ? <function name="mod-long_oldguo" class="io.mycat.route.function.PartitionByMod">
? ? ? ? ? ? ? ? <!-- how many data nodes -->
? ? ? ? ? ? ? ? <property name="count">2</property>
? ? ? ? </function>
3. 創(chuàng)建測試表
mysql -S /data/3307/mysql.sock -e "use taobao;create table a (id int not null primary key auto_increment,name varchar(20) not null);"
mysql -S /data/3307/mysql.sock -e "use taobao;create table b (id int not null primary key auto_increment,addr varchar(20) not null ,aid int );"
mysql -S /data/3308/mysql.sock -e "use taobao;create table a (id int not null primary key auto_increment,name varchar(20) not null);"
mysql -S /data/3308/mysql.sock -e "use taobao;create table b (id int not null primary key auto_increment,addr varchar(20) not null ,aid int );"
4. 重啟mycat 測試
mycat restart
mysql -uroot -p123456 -h10.0.0.51 -P8066
use TESTDB
insert into a(id,name) values(1,'a');? ? 1? ? 3308
insert into a(id,name) values(2,'b');? ? 0? ? 3307
insert into a(id,name) values(3,'c');? ? 1? ? 3308
insert into a(id,name) values(4,'d');? ? 0 ? 3307
insert into a(id,name) values(5,'e');? ? 1? ? 3308
insert into b(id,addr,aid) values(1001,'bj',1);? ? 1 3308
insert into b(id,addr,aid) values(1002,'sj',3);? ? 1 3308
insert into b(id,addr,aid) values(1003,'sd',4);? ? 0 3307
insert into b(id,addr,aid) values(1004,'we',2);? ? 0 3307
insert into b(id,addr,aid) values(1005,'er',5);? ? 0 3307
========
后端數(shù)據(jù)節(jié)點數(shù)據(jù)分布:
mysql -S /data/3307/mysql.sock? -e "select * from taobao.a"
mysql -S /data/3307/mysql.sock? -e "select * from taobao.b"
mysql -S /data/3308/mysql.sock? -e "select * from taobao.a"
mysql -S /data/3308/mysql.sock? -e "select * from taobao.b"
8. 管理類操作
[root@db01 conf]# mysql -uroot -p123456 -h10.0.0.51 -P9066
查看幫助
show @@help;
查看Mycat 服務(wù)情況
show @@server ;
查看分片信息
mysql> show @@datanode;
查看數(shù)據(jù)源
show @@datasource
重新加載配置信息
reload @@config? ? ? ? ? : schema.xml? ? ? ? ? ? ? ? ? ? ? ?
reload @@config_all? ? ? :? 所有配置重新加載
9. 修改邏輯庫:
邏輯庫名
# 總配置文件
schema.xml
<schema name="oldboy" checkSQLschema="false" sqlMaxLimit="100" dataNode="sh1">
sh3
sh4
</schema>
# mycat 服務(wù)配置
server.xml
<user name="root" defaultAccount="true">
? ? ? ? ? ? ? ? <property name="password">123456</property>
? ? ? ? ? ? ? ? <property name="schemas">oldboy</property>
? ? ? ? ? ? ? ? <property name="defaultSchema">oldboy</property>
? ? ? ? ? ? ? ? <!--No MyCAT Database selected 錯誤前會嘗試使用該schema作為schema查吊,不設(shè)置則為null,報錯 -->
? ? ? ? ? ? ? ? <!-- 表級 DML 權(quán)限設(shè)置 -->
? ? ? ? ? ? ? ? <!--? ? ? ? ? ?
? ? ? ? ? ? ? ? <privileges check="false">
? ? ? ? ? ? ? ? ? ? ? ? <schema name="TESTDB" dml="0110" >
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <table name="tb01" dml="0000"></table>
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <table name="tb02" dml="1111"></table>
? ? ? ? ? ? ? ? ? ? ? ? </schema>
? ? ? ? ? ? ? ? </privileges>? ? ? ? ?
? ? ? ? ? ? ? ? -->
? ? ? ? </user>
? ? ? ? <user name="user">
? ? ? ? ? ? ? ? <property name="password">user</property>
? ? ? ? ? ? ? ? <property name="schemas">oldboy</property>
? ? ? ? ? ? ? ? <property name="readOnly">true</property>
? ? ? ? ? ? ? ? <property name="defaultSchema">oldboy</property>
? ? ? ? </user>
reload @@config_all? ? ? :? 所有配置重新加載
2. 添加一個邏輯庫
schema.xml
<schema name="oldguo" checkSQLschema="false" sqlMaxLimit="100" dataNode="sh1">
</schema>
server.xml
<property name="schemas">oldboy,oldguo</property>
reload @@config_all? ? ? :? 所有配置重新加載
課后練習(xí):
1. 測試月份分片 <tableRule name="sharding-by-month">
2.? Mycat+3*MHA分片架構(gòu)+月份分片