KingShard MySQL中介軟體快速入門
kingshard 是一個由Go開發高效能MySQL Proxy專案.
功能簡介:
- 讀寫分離
- 分庫分表
- 資料庫擴容
具體功能檢視官方文件,這次主要是自己動手搭建基於Kingshard的MySQL叢集。
環境
- Docker
- Go
- CentOS 7
過程
-
安裝Go語言
yum install golang -y
- 安裝Kingshard
git clone src/github.com/flike/kingshard cd src/github.com/flike/kingshard source ./dev.sh make
至此已經算安裝了Kingshard,其配置檔案等會再做修改
-
拉取MysqL映象,並啟動兩臺MySQL例項
docker pull mysql:5.6 docker run --name mysql1 -d -p3307:3306 -e MYSQL_ROOT_PASSWORD=123456 mysql:5.6 docker run --name mysql2 -d -p3308:3306 -e MYSQL_ROOT_PASSWORD=123456 mysql:5.6
- 初始化兩臺MySQL資料庫,建立測試所需的表
這個語句比較枯燥,貼上就好了
create database kingshard;
use kingshard;
CREATE TABLE `test_shard_hash_0000` (
`id` bigint(64) unsigned NOT NULL,
`str` varchar(256) DEFAULT NULL,
`f` double DEFAULT NULL,
`e` enum('test1','test2') DEFAULT NULL,
`u` tinyint(3) unsigned DEFAULT NULL,
`i` tinyint(4) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `test_shard_hash_0001` (
`id` bigint(64) unsigned NOT NULL,
`str` varchar(256) DEFAULT NULL,
`f` double DEFAULT NULL,
`e` enum('test1','test2') DEFAULT NULL,
`u` tinyint(3) unsigned DEFAULT NULL,
`i` tinyint(4) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `test_shard_hash_0002` (
`id` bigint(64) unsigned NOT NULL,
`str` varchar(256) DEFAULT NULL,
`f` double DEFAULT NULL,
`e` enum('test1','test2') DEFAULT NULL,
`u` tinyint(3) unsigned DEFAULT NULL,
`i` tinyint(4) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `test_shard_hash_0003` (
`id` bigint(64) unsigned NOT NULL,
`str` varchar(256) DEFAULT NULL,
`f` double DEFAULT NULL,
`e` enum('test1','test2') DEFAULT NULL,
`u` tinyint(3) unsigned DEFAULT NULL,
`i` tinyint(4) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `test_shard_hash_0004` (
`id` bigint(64) unsigned NOT NULL,
`str` varchar(256) DEFAULT NULL,
`f` double DEFAULT NULL,
`e` enum('test1','test2') DEFAULT NULL,
`u` tinyint(3) unsigned DEFAULT NULL,
`i` tinyint(4) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `test_shard_hash_0005` (
`id` bigint(64) unsigned NOT NULL,
`str` varchar(256) DEFAULT NULL,
`f` double DEFAULT NULL,
`e` enum('test1','test2') DEFAULT NULL,
`u` tinyint(3) unsigned DEFAULT NULL,
`i` tinyint(4) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `test_shard_hash_0006` (
`id` bigint(64) unsigned NOT NULL,
`str` varchar(256) DEFAULT NULL,
`f` double DEFAULT NULL,
`e` enum('test1','test2') DEFAULT NULL,
`u` tinyint(3) unsigned DEFAULT NULL,
`i` tinyint(4) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `test_shard_hash_0007` (
`id` bigint(64) unsigned NOT NULL,
`str` varchar(256) DEFAULT NULL,
`f` double DEFAULT NULL,
`e` enum('test1','test2') DEFAULT NULL,
`u` tinyint(3) unsigned DEFAULT NULL,
`i` tinyint(4) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- 配置Kingshard的配置檔案,這次只配置Kingshard的hash shard功能
# server listen addr addr : 0.0.0.0:9696
user : root
password : 123456
web_addr : 0.0.0.0:9797
web_user : admin
web_password : admin
log_level : debug
log_sql: on
name : node1
max_conns_limit : 32
user : root
password : 123456
master : 127.0.0.1:3307
down_after_noalive : 32
-
name : node2
max_conns_limit : 32
user : root
password : 123456
master : 127.0.0.1:3308
down_after_noalive: 32
schema_list :
user: root
nodes: [node1,node2]
default: node1
shard:
db : kingshard
table: test_shard_hash
key: id
nodes: [node1, node2]
type: hash
locations: [4,4]
6. 啟動Kingshard
./bin/kingshard -config=etc/ks.yaml
![image.png](https://upload-images.jianshu.io/upload_images/426671-f130292240e82acc.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
7. 連線Kingshard,測試操作
mysql -h127.0.0.1 -P9696 -p -c
執行相關的SQL語句
insert into test_shard_hash(id,str,f,e,u,i) values(15,"flike",3.14,'test2',2,3);
insert into test_shard_hash(id,str,f,e,u,i) values(7,"chen",2.1,'test1',32,3);
insert into test_shard_hash(id,str,f,e,u,i) values(17,"github",2.5,'test1',32,3);
insert into test_shard_hash(id,str,f,e,u,i) values(18,"kingshard",7.3,'test1',32,3);
select from test_shard_hash where id select from test_shard_hash where id = 18;
/node2/show tables;
![image.png](https://upload-images.jianshu.io/upload_images/426671-62e5b20c433444a0.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
在控制檯我們都可以看到對應的輸出資訊
### 問題
1. ks.yml檔案中配置的userList都要被使用才行
2. 如果想讓非本機訪問,ks.yml需要開啟一些白名單
3. mysql命令列中的-c功能啟用註釋
### 最後
絕知此事要躬行,學東西不能光看,親自動手才知道問題所在。有助於自己更好的理解
### 參考
- [Kingshard文件]()
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/1020/viewspace-2811822/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【Mysql】KingShard中介軟體的使用與配置MySql
- 快速入門大資料訊息中介軟體大資料
- redux 中介軟體入門Redux
- 訊息中介軟體RabbitMQ_RabbitMQ快速入門3MQ
- 中介軟體、MetaQ入門學習
- MySQL中介軟體MySql
- Nginx中介軟體——從小白到入門Nginx
- MySQL中介軟體--ProxySQLMySql
- SQL快速入門 ( MySQL快速入門, MySQL參考, MySQL快速回顧 )MySql
- MySQL 快速入門MySql
- MySQL快速入門MySql
- MySQL中介軟體之ProxySQLMySql
- 一文快速入門分庫分表中介軟體 Sharding-JDBC (必修課)JDBC
- Asp.Net Core入門之自定義中介軟體ASP.NET
- Egg入門學習(三)---理解中介軟體作用
- React從入門到放棄(4):Redux中介軟體ReactRedux
- 【MYsql】Maxscale中介軟體使用MySql
- MySQL中介軟體方案盤點MySql
- Go Web 程式設計入門--編寫 Web 中介軟體GoWeb程式設計
- Redux 入門教程(2):中介軟體與非同步操作Redux非同步
- Redux 入門教程(二):中介軟體與非同步操作Redux非同步
- Redis中介軟體與Web中介軟體RedisWeb
- MVC - 單點登入中介軟體MVC
- MySQL cetus 中介軟體 讀寫分離MySql
- Mysql中介軟體 oneProxy的使用總結MySql
- 中介軟體之訊息中介軟體-pulsar
- 常用的MySQL中介軟體網址彙總MySql
- MySQL中介軟體之ProxySQL(14):ProxySQL+PXCMySql
- 阿里開源Mysql分散式中介軟體:Cobar阿里MySql分散式
- MySQL中介軟體總結MySql
- ThinkPHP 中介軟體PHP
- redux中介軟體Redux
- golang 中介軟體Golang
- 中介軟體整理
- django中介軟體Django
- Laravel 中介軟體Laravel
- Django——中介軟體Django
- 中介軟體-NginxNginx