关闭 x
IT技术网
    技 采 号
    ITJS.cn - 技术改变世界
    • 实用工具
    • 菜鸟教程
    IT采购网 中国存储网 科技号 CIO智库

    IT技术网

    IT采购网
    • 首页
    • 行业资讯
    • 系统运维
      • 操作系统
        • Windows
        • Linux
        • Mac OS
      • 数据库
        • MySQL
        • Oracle
        • SQL Server
      • 网站建设
    • 人工智能
    • 半导体芯片
    • 笔记本电脑
    • 智能手机
    • 智能汽车
    • 编程语言
    IT技术网 - ITJS.CN
    首页 » MySQL »使用MySQL Proxy告终读写离别的操作实例(1)

    使用MySQL Proxy告终读写离别的操作实例(1)

    2011-07-22 13:24:00 出处:ITJS
    分享

    MySQL Proxy最壮大的一项功能是告终“读写离别(Read/Write Splitting)”。它的原理是让主数据库处理事务性查询,而从数据库处理SELECT查询。数据库复制被用来把事务性查询导致的改变同步到集群中的从数据库。

    max_conns = s.connected_clients    max_conns_ndx = i    end    end    end  

    至此,我们找到了一个具有安逸连接的从数据库

    if max_conns_ndx > 0 then    proxy.connection.backend_ndx = max_conns_ndx    end    else  

    发送到主数据库

    end    return proxy.PROXY_SEND_QUERY  

    始终想等到BETA版出来再试探的,可还是经不住勾引阿,下午终于有工夫测验一下了。

    (该篇文章参看地址:blog.chinaunix.net/u/8111/showart.php id=451420)

    一、必备软件:

    1、LUA

    能够去LUA的官方下载:dpa.nsysu.edu.tw/Downloads/MySQL-Proxy/。

    可能去MYSQL官方下载源代码。

    我这里下载了:

    mysql.cdpa.nsysu.edu.tw/Downloads/MySQL-Proxy/mysql-proxy-0.6.0.tar.gz

    3、测验过程中废止了B和C的REPLICATION。这么SQL语句一下子就看出来从哪里来的。

    万一是M-S(能够先在SLAVE上举行STOP SLAVE)

    二、测验主机地址:

    1、MySQL Proxy 安装地址:192.168.0.234(简称A)

    2、MySQL 服务器地址:192.168.0.235(简称B)/236(简称C)

    三、安装经验:

    万一是按照二进制包安装的,跳过这一步。

    1、 LUA的安装

    [chinastor.com-root@localhost ~]#tar zxvf lua-5.1.2.tar.gz -C /usr/local   [chinastor.com-root@localhost ~]# cd /usr/local/   [chinastor.com-root@localhost local]# mv lua-5.1 lua   [chinastor.com-root@localhost lua]# cd lua   [chinastor.com-root@localhost lua]#make local;make install; 

    导出环境变量:

    [chinastor.com-root@localhost lua]#export LUA_CFLAGS="-I/usr/local/include" LUA_LIBS="-L/usr/local/lib -llua -ldl" LDFLAGS="-lm" 

    2、MySQL Proxy 安装

    [chinastor.com-root@localhost ~]#tar -zxvf mysql-proxy-0.6.1-linux-rhel4-x86-32bit.tar.gz -C /usr/local/mysql/   [chinastor.com-root@localhost ~]#cd /usr/local/mysql   [chinastor.com-root@localhost mysql]#mv mysql-proxy-0.6.1-linux-rhel4-x86-32bit/ mysql-proxy   [chinastor.com-root@localhost sbin]# export PATH=$PATH:/usr/local/mysql/mysql-proxy/sbin/ 

    四、利用MySQL Proxy

    1、察看帮助选项

    [chinastor.com-root@localhost ~]# mysql-proxy --help-all 

    2、对MySQL 垄断

    MySQL服务器假想曾经安装。(安装环节这里就不写了)

    两台机器上的表初始构造和数据都是一样的,而且都有t_girl_user这个用户。

    mysql> desc t;   +-------+----------+------+-----+---------+----------------+   | Field | Type | Null | Key | Default | Extra |   +-------+----------+------+-----+---------+----------------+   | id | int(11) | NO | PRI | NULL | auto_increment |    | c_str | char(64) | NO | | | |    +-------+----------+------+-----+---------+----------------+   2 rows in set (0.00 sec)   2 rows in set (0.00 sec) 

    我在B上插入一条登记

    mysql> insert into t(c_str) values('B');   Query OK, 1 row affected (0.00 sec) 

    在C上同样插入一条登记

    mysql> insert into t(c_str) value('C');   Query OK, 1 row affected (0.00 sec)   mysql>  

    3、启用MySQL-Proxy(测验读写离别)

    [chinastor.com-root@localhost sbin]# mysql-proxy --proxy-read-only-backend-addresses=192.168.0.236:3306 --proxy-backend-addresses=192.168.0.235:3306    --proxy-lua-script=/usr/local/mysql/mysql-proxy/share/mysql-proxy/rw-splitting.lua &   [1] 32554 

    让MYSQL PROXY积极启用的容易脚本

    #!/bin/sh   # export PATH=$PATH:/usr/local/mysql-proxy   cd /usr/local/mysql-proxy   ./mysql-proxy --proxy-read-only-backend-addresses=192.168.0.236:3306 --proxy-backend-addresses=192.168.0.235:3306 --proxy-lua-script=rw-splitting.lua >> /tmp/log 

    这个例子中局限192.168.0.236为只读,192.168.0.235为可写。

    4、下来我们来看试探收获。

    我们用几台客户端开启4个连接。

    [chinastor.com-root@localhost ~]# /usr/local/mysql/bin/mysql -ut_girl_user -p123456 -P4040 -h192.168.0.234 -Dt_girl 

    我这边曾经启用了好几个客户端,这里就不贴了,号召和上面的一样。

    写数据。

    mysql> insert into t(c_str) values ('wangwang');   Query OK, 1 row affected (0.01 sec)   mysql> show processlist;   +----+-------------+---------------------+--------+---------+------+-------+------------------+   | Id | User | Host | db | Command | Time | State | Info |   +----+-------------+---------------------+--------+---------+------+-------+------------------+   | 12 | t_girl_user | 192.168.0.234:44975 | t_girl | Sleep | 28 | | NULL |   | 13 | t_girl_user | 192.168.0.234:44976 | t_girl | Sleep | 15 | | NULL |   | 14 | t_girl_user | 192.168.0.234:44977 | t_girl | Sleep | 19 | | NULL |   | 15 | t_girl_user | 192.168.0.234:44978 | t_girl | Query | 0 | NULL | show processlist |   +----+-------------+---------------------+--------+---------+------+-------+------------------+   4 rows in set (0.00 sec)   4 rows in set (0.00 sec) 

    读数据(目前还是写和读都在B上)

    mysql> select * from t;   +----+----------+   | id | c_str |   +----+----------+   | 1 | B |    | 2 | wangwang |    +----+----------+   2 rows in set (0.00 sec) 

    再添置一个客户端连接。

    1 row in set (0.00 sec)   mysql> show processlist;   +----+-------------+---------------------+--------+---------+------+-----------------------------------------------------------------------+------------------+   | Id | User | Host | db | Command | Time | State | Info |   +----+-------------+---------------------+--------+---------+------+-----------------------------------------------------------------------+------------------+   | 2 | system user | | NULL | Connect | 1842 | Has read all relay log; waiting for the slave I/O thread to update it | NULL |    | 5 | root | localhost | t_girl | Query | 0 | NULL | show processlist |    | 12 | t_girl_user | 192.168.0.234:44975 | t_girl | Sleep | 446 | | NULL |    | 13 | t_girl_user | 192.168.0.234:44976 | t_girl | Sleep | 188 | | NULL |    | 14 | t_girl_user | 192.168.0.234:44977 | t_girl | Sleep | 206 | | NULL |    | 15 | t_girl_user | 192.168.0.234:44978 | t_girl | Sleep | 203 | | NULL |    | 16 | t_girl_user | 192.168.0.234:44979 | t_girl | Sleep | 164 | | NULL |    | 17 | t_girl_user | 192.168.0.234:44980 | t_girl | Sleep | 210 | | NULL |    +----+-------------+---------------------+--------+---------+------+-----------------------------------------------------------------------+------------------+   8 rows in set (0.00 sec) 

    目前我们来读数据。

    mysql> select * from t;   +----+-------+   | id | c_str |   +----+-------+   | 1 | C |    +----+-------+   1 row in set (0.00 sec) 

    这个数据很显明是来自C的。

    再插入一条登记

    mysql> insert into t(c_str) values ('wangwei');   Query OK, 1 row affected (0.00 sec)   mysql> select * from t;   +----+-------+   | id | c_str |   +----+-------+   | 1 | C |    +----+-------+   1 row in set (0.00 sec) 

    C上的数据未曾变,还是未曾数据。

    目前跑到B上看看kaibanla.com。

    mysql> show processlist;   +----+-------------+---------------------+--------+---------+------+-----------------------------------------------------------------------+------------------+   | Id | User | Host | db | Command | Time | State | Info |   +----+-------------+---------------------+--------+---------+------+-----------------------------------------------------------------------+------------------+   | 2 | system user | | NULL | Connect | 1842 | Has read all relay log; waiting for the slave I/O thread to update it | NULL |   | 5 | root | localhost | t_girl | Query | 0 | NULL | show processlist |   | 12 | t_girl_user | 192.168.0.234:44975 | t_girl | Sleep | 446 | | NULL |   | 13 | t_girl_user | 192.168.0.234:44976 | t_girl | Sleep | 188 | | NULL |   | 14 | t_girl_user | 192.168.0.234:44977 | t_girl | Sleep | 206 | | NULL |   | 15 | t_girl_user | 192.168.0.234:44978 | t_girl | Sleep | 203 | | NULL |   | 16 | t_girl_user | 192.168.0.234:44979 | t_girl | Sleep | 164 | | NULL |   | 17 | t_girl_user | 192.168.0.234:44980 | t_girl | Sleep | 210 | | NULL |   +----+-------------+---------------------+--------+---------+------+-----------------------------------------------------------------------+------------------+   8 rows in set (0.00 sec)   mysql> select * from t;   +----+----------+   | id | c_str |   +----+----------+   | 1 | B |   | 2 | wangwang |   | 3 | wangwei |   +----+----------+   3 rows in set (0.00 sec) 

    数据已成功插入到B中。

    关于使用MySQL Proxy告终读写离别的知识就介绍到这里,希望能对您有所帮助。

    MySQL Proxy最壮大的一项功能是告终“读写离别(Read/Write Splitting)”。它的原理是让主数据库处理事务性查询,而从数据库处理SELECT查询。数据库复制被用来把事务性查询导致的改变同步到集群中的从数据库。

    max_conns = s.connected_clients    max_conns_ndx = i    end    end    end  

    至此,我们找到了一个具有安逸连接的从数据库

    if max_conns_ndx > 0 then    proxy.connection.backend_ndx = max_conns_ndx    end    else  

    发送到主数据库

    end    return proxy.PROXY_SEND_QUERY  

    始终想等到BETA版出来再试探的,可还是经不住勾引阿,下午终于有工夫测验一下了。

    (该篇文章参看地址:blog.chinaunix.net/u/8111/showart.php id=451420)

    一、必备软件:

    1、LUA

    能够去LUA的官方下载:dpa.nsysu.edu.tw/Downloads/MySQL-Proxy/。

    可能去MYSQL官方下载源代码。

    我这里下载了:

    mysql.cdpa.nsysu.edu.tw/Downloads/MySQL-Proxy/mysql-proxy-0.6.0.tar.gz

    3、测验过程中废止了B和C的REPLICATION。这么SQL语句一下子就看出来从哪里来的。

    万一是M-S(能够先在SLAVE上举行STOP SLAVE)

    二、测验主机地址:

    1、MySQL Proxy 安装地址:192.168.0.234(简称A)

    2、MySQL 服务器地址:192.168.0.235(简称B)/236(简称C)

    三、安装经验:

    万一是按照二进制包安装的,跳过这一步。

    1、 LUA的安装

    [chinastor.com-root@localhost ~]#tar zxvf lua-5.1.2.tar.gz -C /usr/local   [chinastor.com-root@localhost ~]# cd /usr/local/   [chinastor.com-root@localhost local]# mv lua-5.1 lua   [chinastor.com-root@localhost lua]# cd lua   [chinastor.com-root@localhost lua]#make local;make install; 

    导出环境变量:

    [chinastor.com-root@localhost lua]#export LUA_CFLAGS="-I/usr/local/include" LUA_LIBS="-L/usr/local/lib -llua -ldl" LDFLAGS="-lm" 

    2、MySQL Proxy 安装

    [chinastor.com-root@localhost ~]#tar -zxvf mysql-proxy-0.6.1-linux-rhel4-x86-32bit.tar.gz -C /usr/local/mysql/   [chinastor.com-root@localhost ~]#cd /usr/local/mysql   [chinastor.com-root@localhost mysql]#mv mysql-proxy-0.6.1-linux-rhel4-x86-32bit/ mysql-proxy   [chinastor.com-root@localhost sbin]# export PATH=$PATH:/usr/local/mysql/mysql-proxy/sbin/ 

    四、利用MySQL Proxy

    1、察看帮助选项

    [chinastor.com-root@localhost ~]# mysql-proxy --help-all 

    2、对MySQL 垄断

    MySQL服务器假想曾经安装。(安装环节这里就不写了)

    两台机器上的表初始构造和数据都是一样的,而且都有t_girl_user这个用户。

    mysql> desc t;   +-------+----------+------+-----+---------+----------------+   | Field | Type | Null | Key | Default | Extra |   +-------+----------+------+-----+---------+----------------+   | id | int(11) | NO | PRI | NULL | auto_increment |    | c_str | char(64) | NO | | | |    +-------+----------+------+-----+---------+----------------+   2 rows in set (0.00 sec)   2 rows in set (0.00 sec) 

    我在B上插入一条登记

    mysql> insert into t(c_str) values('B');   Query OK, 1 row affected (0.00 sec) 

    在C上同样插入一条登记

    mysql> insert into t(c_str) value('C');   Query OK, 1 row affected (0.00 sec)   mysql>  

    3、启用MySQL-Proxy(测验读写离别)

    [chinastor.com-root@localhost sbin]# mysql-proxy --proxy-read-only-backend-addresses=192.168.0.236:3306 --proxy-backend-addresses=192.168.0.235:3306    --proxy-lua-script=/usr/local/mysql/mysql-proxy/share/mysql-proxy/rw-splitting.lua &   [1] 32554 

    让MYSQL PROXY积极启用的容易脚本

    #!/bin/sh   # export PATH=$PATH:/usr/local/mysql-proxy   cd /usr/local/mysql-proxy   ./mysql-proxy --proxy-read-only-backend-addresses=192.168.0.236:3306 --proxy-backend-addresses=192.168.0.235:3306 --proxy-lua-script=rw-splitting.lua >> /tmp/log 

    这个例子中局限192.168.0.236为只读,192.168.0.235为可写。

    4、下来我们来看试探收获。

    我们用几台客户端开启4个连接。

    [chinastor.com-root@localhost ~]# /usr/local/mysql/bin/mysql -ut_girl_user -p123456 -P4040 -h192.168.0.234 -Dt_girl 

    我这边曾经启用了好几个客户端,这里就不贴了,号召和上面的一样。

    写数据。

    mysql> insert into t(c_str) values ('wangwang');   Query OK, 1 row affected (0.01 sec)   mysql> show processlist;   +----+-------------+---------------------+--------+---------+------+-------+------------------+   | Id | User | Host | db | Command | Time | State | Info |   +----+-------------+---------------------+--------+---------+------+-------+------------------+   | 12 | t_girl_user | 192.168.0.234:44975 | t_girl | Sleep | 28 | | NULL |   | 13 | t_girl_user | 192.168.0.234:44976 | t_girl | Sleep | 15 | | NULL |   | 14 | t_girl_user | 192.168.0.234:44977 | t_girl | Sleep | 19 | | NULL |   | 15 | t_girl_user | 192.168.0.234:44978 | t_girl | Query | 0 | NULL | show processlist |   +----+-------------+---------------------+--------+---------+------+-------+------------------+   4 rows in set (0.00 sec)   4 rows in set (0.00 sec) 

    读数据(目前还是写和读都在B上)

    mysql> select * from t;   +----+----------+   | id | c_str |   +----+----------+   | 1 | B |    | 2 | wangwang |    +----+----------+   2 rows in set (0.00 sec) 

    再添置一个客户端连接。

    1 row in set (0.00 sec)   mysql> show processlist;   +----+-------------+---------------------+--------+---------+------+-----------------------------------------------------------------------+------------------+   | Id | User | Host | db | Command | Time | State | Info |   +----+-------------+---------------------+--------+---------+------+-----------------------------------------------------------------------+------------------+   | 2 | system user | | NULL | Connect | 1842 | Has read all relay log; waiting for the slave I/O thread to update it | NULL |    | 5 | root | localhost | t_girl | Query | 0 | NULL | show processlist |    | 12 | t_girl_user | 192.168.0.234:44975 | t_girl | Sleep | 446 | | NULL |    | 13 | t_girl_user | 192.168.0.234:44976 | t_girl | Sleep | 188 | | NULL |    | 14 | t_girl_user | 192.168.0.234:44977 | t_girl | Sleep | 206 | | NULL |    | 15 | t_girl_user | 192.168.0.234:44978 | t_girl | Sleep | 203 | | NULL |    | 16 | t_girl_user | 192.168.0.234:44979 | t_girl | Sleep | 164 | | NULL |    | 17 | t_girl_user | 192.168.0.234:44980 | t_girl | Sleep | 210 | | NULL |    +----+-------------+---------------------+--------+---------+------+-----------------------------------------------------------------------+------------------+   8 rows in set (0.00 sec) 

    目前我们来读数据。

    mysql> select * from t;   +----+-------+   | id | c_str |   +----+-------+   | 1 | C |    +----+-------+   1 row in set (0.00 sec) 

    这个数据很显明是来自C的。

    再插入一条登记

    mysql> insert into t(c_str) values ('wangwei');   Query OK, 1 row affected (0.00 sec)   mysql> select * from t;   +----+-------+   | id | c_str |   +----+-------+   | 1 | C |    +----+-------+   1 row in set (0.00 sec) 

    C上的数据未曾变,还是未曾数据。

    目前跑到B上看看kaibanla.com。

    mysql> show processlist;   +----+-------------+---------------------+--------+---------+------+-----------------------------------------------------------------------+------------------+   | Id | User | Host | db | Command | Time | State | Info |   +----+-------------+---------------------+--------+---------+------+-----------------------------------------------------------------------+------------------+   | 2 | system user | | NULL | Connect | 1842 | Has read all relay log; waiting for the slave I/O thread to update it | NULL |   | 5 | root | localhost | t_girl | Query | 0 | NULL | show processlist |   | 12 | t_girl_user | 192.168.0.234:44975 | t_girl | Sleep | 446 | | NULL |   | 13 | t_girl_user | 192.168.0.234:44976 | t_girl | Sleep | 188 | | NULL |   | 14 | t_girl_user | 192.168.0.234:44977 | t_girl | Sleep | 206 | | NULL |   | 15 | t_girl_user | 192.168.0.234:44978 | t_girl | Sleep | 203 | | NULL |   | 16 | t_girl_user | 192.168.0.234:44979 | t_girl | Sleep | 164 | | NULL |   | 17 | t_girl_user | 192.168.0.234:44980 | t_girl | Sleep | 210 | | NULL |   +----+-------------+---------------------+--------+---------+------+-----------------------------------------------------------------------+------------------+   8 rows in set (0.00 sec)   mysql> select * from t;   +----+----------+   | id | c_str |   +----+----------+   | 1 | B |   | 2 | wangwang |   | 3 | wangwei |   +----+----------+   3 rows in set (0.00 sec) 

    数据已成功插入到B中。

    关于使用MySQL Proxy告终读写离别的知识就介绍到这里,希望能对您有所帮助。

    上一篇返回首页 下一篇

    声明: 此文观点不代表本站立场;转载务必保留本文链接;版权疑问请联系我们。

    别人在看

    hiberfil.sys文件可以删除吗?了解该文件并手把手教你删除C盘的hiberfil.sys文件

    Window 10和 Windows 11哪个好?答案是:看你自己的需求

    盗版软件成公司里的“隐形炸弹”?老板们的“法务噩梦” 有救了!

    帝国CMS7.5编辑器上传图片取消宽高的三种方法

    帝国cms如何自动生成缩略图的实现方法

    Windows 12即将到来,将彻底改变人机交互

    帝国CMS 7.5忘记登陆账号密码怎么办?可以phpmyadmin中重置管理员密码

    帝国CMS 7.5 后台编辑器换行,修改回车键br换行为p标签

    Windows 11 版本与 Windows 10比较,新功能一览

    Windows 11激活产品密钥收集及专业版激活方法

    IT头条

    智能手机市场风云:iPhone领跑销量榜,华为缺席引争议

    15:43

    大数据算法和“老师傅”经验叠加 智慧化收储粮食尽显“科技范”

    15:17

    严重缩水!NVIDIA将推中国特供RTX 5090 DD:只剩24GB显存

    00:17

    无线路由大厂 TP-Link突然大裁员:补偿N+3

    02:39

    Meta 千万美金招募AI高级人才

    00:22

    技术热点

    windows 7应用程序无法启动出现窗口提示找不到应用程序

    SQL中数据类型转换函数的使用

    MySQL使用变量的注意事项

    SQL Server 锁自定义的示例演示

    如何在Linux命令行中创建以及展示演示稿

    windows 7任务栏显示标题的方法(windows 7任务栏缩略图不显示出

      友情链接:
    • IT采购网
    • 科技号
    • 中国存储网
    • 存储网
    • 半导体联盟
    • 医疗软件网
    • 软件中国
    • ITbrand
    • 采购中国
    • CIO智库
    • 考研题库
    • 法务网
    • AI工具网
    • 电子芯片网
    • 安全库
    • 隐私保护
    • 版权申明
    • 联系我们
    IT技术网 版权所有 © 2020-2025,京ICP备14047533号-20,Power by OK设计网

    在上方输入关键词后,回车键 开始搜索。Esc键 取消该搜索窗口。