时间:2021-07-01 10:21:17 帮助过:4人阅读
注:(NODE1和NODE2运行于XEN虚拟化平台,硬件环境HP Z800)
分布式:主要是通过将同一个表的数据拆分成多个,放入不同的数据库实例,查询的时候也会按照同样的操作方式,来更新具体数据库实例中的对应的数据。
HA:高可用性,在设置了MYSQL心跳的情况下,如果主数据库发生了异常,Cobar会自动连接从数据库,如果主数据库恢复正常,只能手动恢复到主数据库。Cobar只负责切换数据库实例,不负责主从数据库的同步,所以需要提前将主从数据库设置双向同步。
当然,如果想努力实现这些功能,可以fork官方的源码:https://github.com/alibaba/cobar
Cobar-Server-1.2.7版本下载:http://pan.baidu.com/s/1pJudQh9
实验拓扑图如下:
01 | #创建dbtest1脚本 |
02 | |
03 | |
04 | |
05 | |
06 | |
07 | |
08 | |
09 | #创建dbtest2 |
10 | |
11 | |
12 | |
13 | |
14 | |
15 | |
16 | |
17 | #创建dbtest3 |
18 | |
19 | |
20 | |
21 | |
22 | |
23 | |
24 | |
schema.xml配置如下
01 |
|
02 | < |
03 | |
04 | |
05 | |
06 | |
07 | |
08 | |
09 | |
10 | |
11 | |
12 | |
13 | |
14 | |
15 | |
16 | |
17 | |
18 | |
19 | |
20 | |
21 | |
22 | |
23 | |
24 | |
25 | |
26 | |
27 | |
28 | |
29 | |
30 | |
31 | |
32 | |
33 | |
34 |
|
server.xml简单配置
1 |
|
2 | < |
3 | |
4 | |
5 | |
6 | |
7 | |
8 |
|
rule.xml配置
01 |
|
02 | < |
03 | |
04 | |
05 | |
06 | |
07 | |
08 | |
09 | |
10 | |
11 | |
12 | |
13 | |
14 | |
15 | |
16 | |
17 | |
18 | |
19 | |
20 | |
21 |
|
这里需要说明,INSERT语句中必须包含路由规则定义的字段,否则Cobar不会对数据进行拆分,同时存储到多个数据库实例中,比如上面的tb2表中,id字段如果设置了auto_increment,插入语句中不用指明id字段,这样就无法达到数据包拆分的目的。
准备完成之后直接运行bin目录下的./startup.sh即可。
然后查看输入的日志:
01 | yan@yan-Z400:~/cobar-server-1.2.7/logs$ tail -f stdout.log |
02 | 09:57:00,155 INFO Cobar is ready to startup ... |
03 | 09:57:00,155 INFO Startup processors ... |
04 | 09:57:00,198 INFO Startup connector ... |
05 | 09:57:00,202 INFO Initialize dataNodes ... |
06 | 09:57:00,811 INFO dnTest1:0 init success |
07 | 09:57:00,816 INFO dnTest3:0 init success |
08 | 09:57:00,821 INFO dnTest2:0 init success |
09 | 09:57:00,835 INFO CobarManager is started and listening on 9066 |
10 | 09:57:00,837 INFO CobarServer is started and listening on 8066 |
11 | 09:57:00,837 INFO =============================================== |
这样cobar服务端就已经启动。
直接使用jdbc或mysql终端连接cobar:
01 | yan@yan-Z400:~$ mysql -uroot -psa -P8066 -h192.168.137.8 |
02 | Welcome to the MySQL monitor. Commands end with ; or \g. |
03 | Your MySQL connection id is 1 |
04 | Server version: 5.1.48-cobar-1.2.7 Cobar Server (ALIBABA) |
05 |
06 | Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. |
07 |
08 | Oracle is a registered trademark of Oracle Corporation and/or its |
09 | affiliates. Other names may be trademarks of their respective |
10 | owners. |
11 |
12 | Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. |
01 | #!/usr/bin/env python |
02 | #coding=utf-8 |
03 | import |
04 |
05 | #连接 |
06 | cxn |
07 | #游标 |
08 | cur |
09 |
10 | cur.execute( |
11 |
12 | for |
13 | |
14 | |
15 |
16 | cur.close() |
17 | cxn.commit() |
18 | cxn.close() |
插入后查看数据库dbtest2和数据dbtest3的情况:
可以看到有100条数据插入了dbtest2,99条数据插入了dbtest3。
后面会对Cobar进行更深入的了解。我的Fork分支
(完)