MySQL Proxy快速实现读写分离以及负载均衡
1. 安装下载已经编译好的安装包,或者预编译安装包均可,在这里,使用预编译版本。 [@s1.yejr.com ~]# tar zxf mysql-proxy-0.6.
1. 安装
下载已经编译好的安装包,或者预编译安装包均可,在这里,使用预编译版本。
[@s1.yejr.com ~]# tar zxf mysql-proxy-0.6.0-linux-rhas4-x86.tar.gz
[@s1.yejr.com ~]# cd mysql-proxy-0.6.0-linux-rhas4-x86
#可以看到有2个目录
[@s1.yejr.com mysql-proxy-0.6.0-linux-rhas4-x86]# ls
sbin share
[@s1.yejr.com mysql-proxy-0.6.0-linux-rhas4-x86]# mv sbin/mysql-proxy /usr/local/sbin/
[@s1.yejr.com mysql-proxy-0.6.0-linux-rhas4-x86]# ls share
mysql-proxy tutorial-constants.lua tutorial-packets.lua tutorial-rewrite.lua tutorial-warnings.lua
tutorial-basic.lua tutorial-inject.lua tutorial-query-time.lua tutorial-states.lua
#将lua脚本放到/usr/local/share下,以备他用
[@s1.yejr.com mysql-proxy-0.6.0-linux-rhas4-x86]# mv share/mysql-proxy /usr/local/share/
#删除符号连接等垃圾代码
[@s1.yejr.com mysql-proxy-0.6.0-linux-rhas4-x86]# strip /usr/local/sbin/mysql-proxy
2. 启动
编译一下启动管理脚本:
[@s1.yejr.com ~]# vi /etc/init.d/mysql-proxy
#!/bin/sh
export LUA_PATH=/usr/local/share/mysql-proxy/?.lua
mode=$1
if [ -z "$mode" ] ; then
mode="start"
fi
case $mode in
'start')
mysql-proxy --daemon \
--admin-address=:4401 \
--proxy-address=:3307 \
--proxy-backend-addresses=:3306 \
--proxy-read-only-backend-addresses=192.168.133.232:3306 \
--proxy-read-only-backend-addresses=10.10.74.61:3306 \
--proxy-lua-script=/usr/local/share/mysql-proxy/rw-splitting.lua
;;
'stop')
killall mysql-proxy
;;
'restart')
if $0 stop ; then
$0 start
else
echo "retart failed!!!"
exit 1
fi
;;
esac
exit 0
现在解释一下启动脚本:
--daemon 采用daemon方式启动
--admin-address=:4401 指定mysql proxy的管理端口,在这里,表示本机的4401端口
--proxy-address=:3307 指定mysql proxy的监听端口,也可以用 127.0.0.1:3307 表示
--proxy-backend-addresses=:3306 指定mysql主机的端口
--proxy-read-only-backend-addresses=192.168.1.1:3306 指定只读的mysql主机端口
--proxy-read-only-backend-addresses=192.168.1.2:3306 指定另一个只读的mysql主机端口
--proxy-lua-script=/usr/local/share/mysql-proxy/rw-splitting.lua 指定lua脚本,在这里,使用的是rw-splitting脚本,用于读写分离
完整的参数可以运行以下命令查看:
mysql-proxy --help-all
运行以下命令启动/停止/重启mysql proxy:
[@s1.yejr.com ~]# /etc/init.d/mysql-proxy start
[@s1.yejr.com ~]# /etc/init.d/mysql-proxy stop
[@s1.yejr.com ~]# /etc/init.d/mysql-proxy restart
3. 试用
[@s1.yejr.com ~]# mysql -h127.0.0.1 -uroot -P3307
mysql> show processlist;
+-------+------+----------------+------+---------+------+-------+------------------+
| Id | User | Host | db | Command | Time | State | Info |
+-------+------+----------------+------+---------+------+-------+------------------+
| 30052 | root | localhost:9656 | NULL | Query | 0 | NULL | show processlist |
+-------+------+----------------+------+---------+------+-------+------------------+
可以看到,产生了一个新连接。
用sysbench测试一下,看会不会挂掉:
[@s1.yejr.com ~]# sysbench --test=oltp --mysql-table-engine=innodb --oltp-table-size=1000000 \
--mysql-socket=/tmp/mysql.sock --mysql-user=root --mysql-db=test prepare
[@s1.yejr.com ~]# sysbench --test=oltp --mysql-table-engine=innodb --oltp-table-size=1000000 \
--mysql-socket=/tmp/mysql.sock --mysql-user=root --mysql-db=test run
.........
.........
Threads fairness:
events (avg/stddev): 10000.0000/0.00
execution time (avg/stddev): 23.0387/0.00
还好,没给大家丢脸,,剩下的测试自己完成吧 :)
4. 其他
mysql proxy还可以实现连接池的功能,这在很多LAMP开发中是软肋,因此,有了mysql proxy,就可以不用再担心连接数超限的问题了。
如果使用rw-splitting.lua脚本的话,最好修改以下2个参数的默认值:
min_idle_connections = 1
max_idle_connections = 3
MySQL Proxy 的详细介绍:请点这里
MySQL Proxy 的下载地址:请点这里
相关阅读:
MySQL Proxy读写分离实战
在CentOS 5.2下安装最新的MySQL Proxy
RHEL5.5下MySQL Proxy 安装
mysql proxy、mysql-mmm实现读写分离高可用性

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to achieve separation of read and write in database in ReactQuery? In modern front-end development, the separation of reading and writing in the database is an important architectural design consideration. ReactQuery is a powerful state management library that can optimize the data acquisition and management process of front-end applications. This article will introduce how to use ReactQuery to achieve separation of read and write in the database, and provide specific code examples. The core concepts of ReactQuery are Query, Mutatio

MySQL is one of the most popular databases and is widely used in applications. In the case of high concurrency and large data volume, due to insufficient read and write concurrency performance of MySQL, in order to improve the concurrency performance of MySQL, read and write separation has become a necessary solution. As a popular dynamic language, PHP is very closely integrated with MySQL. So, this article will introduce how to use PHP to achieve MySQL read and write separation.

As a high-performance in-memory database, Redis faces high concurrency scenarios in daily applications. In order to cope with these needs, Redis provides two mechanisms of master-slave synchronization and read-write separation to improve the performance and availability of Redis. This article will introduce in detail the principle and implementation of Redis's master-slave synchronization and read-write separation. 1. Redis’s master-slave synchronization mechanism Redis’s master-slave synchronization mechanism can synchronize data from one Redis server to another Redis server to achieve data backup and load.

How to configure read-write separation for MySQL connections? MySQL database is one of the most commonly used relational databases, and its high availability and performance are crucial for large websites and applications. In order to improve the load balancing and performance of the database, we can configure the read-write separation of the MySQL connection. Read-write separation is a database architecture design pattern that improves the concurrent processing capabilities of the database by allocating read operations and write operations to different database servers. This way we can take full advantage of multiple servers

Advantages and Challenges of Using PHP to Separate MySQL Read and Write As the scale of web applications continues to expand and the number of visits increases, database read and write performance has become a key challenge faced by developers. In order to solve this problem, many developers began to use MySQL read-write separation technology to improve database processing capabilities. This article will explore how to use PHP to achieve MySQL read and write separation, while analyzing its advantages and challenges. 1. Advantages of MySQL read-write separation Load balancing: by allocating read operations and write operations to different

MySQL is an open source relational database management system commonly used in large-scale web applications. When developing large-scale applications, it often happens that read and write requests are too frequent, causing the database to be overloaded and performance to decrease. In order to improve the performance of MySQL, read and write separation technology can be used. Read and write separation refers to allocating read requests and write requests to different MySQL servers for processing, improving the system's concurrent processing capabilities and response speed. Specifically, developers with many read operations can allocate read operations to read

How to use MySQL's master-slave replication to implement read-write separation architecture. In traditional web applications, read and write operations are usually connected to the same database server. As applications develop and access volumes increase, this architecture can easily lead to database performance bottlenecks. In order to solve this problem, MySQL's master-slave replication can be used to implement a read-write separation architecture. This article will introduce how to use MySQL's master-slave replication to achieve read-write separation, and provide corresponding code examples. Environment preparation First, make sure you have installed

What are the techniques for learning MySQL's read-write separation and load balancing? MySQL is a commonly used relational database management system that is widely used in various web applications and enterprise-level systems. As the scale of applications continues to increase, the read and write loads on the database are becoming heavier and heavier. In order to improve database performance and scalability, read and write separation and load balancing have become necessary technical means. Read and write separation refers to separating read operations and write operations to different MySQL servers to improve the reading efficiency and capacity of the database. Load balancing refers to the number of
