关闭 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告终读写离别的知识就介绍到这里,希望能对您有所帮助。

    上一篇返回首页 下一篇

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

    别人在看

    Edge浏览器百度被劫持/篡改怎么办,地址后边跟着尾巴#tn=68018901_7_oem_dg

    Google Chrome 在 iPhone 上新增了 Safari 数据导入选项

    Windows 11专业版 KMS工具激活产品密钥的方法

    DEDECMS安全策略官方出品

    Microsoft Text Input Application 可以关闭吗?

    新版本QQ如何关闭自带的浏览器?

    C++编程语言中continue的用法和功能,附举例示范代码

    c++ map 的数据结构、基本操作以及其在实际应用中的使用。

    C语言如何避免内存泄漏、缓冲区溢出、空指针解引用等常见的安全问题

    C语言中的break语句详解

    IT头条

    马斯克2026最新采访总结:2040年,全球机器人数量将突破100亿台

    23:52

    专家解读|规范人工智能前沿业态健康发展的新探索:解读《人工智能拟人化互动服务管理暂行办法》

    00:54

    用至强 6高存力搞定MoE卸载!

    17:53

    美国将允许英伟达向中国“经批准的客户”出售H200 GPU

    02:08

    苹果与微信就15%手续费达成一致?腾讯未置可否

    22:00

    技术热点

    PHP 和 Node.js 的10项对比挑战

    Javascript闭包深入解析及实现方法

    windows 7、windows 8.1手动增加右键菜单功能技巧

    MYSQL出错代码大汇总

    windows 7假死机怎么办 windows 7系统假死机的原因以及解决方法

    Ubuntu(Linux)下配置IP地址的方法

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

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