同事 Struct Chen 的 Amoeba For MySQL 项目已经 出来不短时间了,可一直没有时间好好体验,最近一直在做一些软件和硬件的功能以及性能相关的测试工作,Amoeba For MySQL自然也将被列入计划之内。 对 Amoeba For MySQL 的测试到目前位置主要还是功能方面的测
同事 Struct Chen 的 Amoeba For MySQL 项目已经 出来不短时间了,可一直没有时间好好体验,最近一直在做一些软件和硬件的功能以及性能相关的测试工作,Amoeba For MySQL自然也将被列入计划之内。
对 Amoeba For MySQL 的测试到目前位置主要还是功能方面的测试,配置了一套四台机器的环境:
Server A: Amoeba Server
Server B: MySQL Master
Server C: MySQL Slave1
Server D: MySQL Slave2
软件环境:RHEL5.2 (X86_64),JAVA 1.5.0_16, Amoeba For MySQL 0.31
测试功能:
1、读写分离
2、数据垂直切分
3、数据水平切分
amoeba.xml配置如下:
?xmlversion="1.0"encoding="gbk"?>
!DOCTYPEamoeba:configurationSYSTEM"amoeba.dtd">
amoeba:configurationxmlns:amoeba="http://amoeba.meidusa.com/">
server>
propertyname="port">8066property>
propertyname="ipAddress">10.0.38.21property>
propertyname="readThreadPoolSize">500property>
propertyname="clientSideThreadPoolSize">500property>
propertyname="serverSideThreadPoolSize">500property>
propertyname="netBufferSize">200property>
propertyname="tcpNoDelay">trueproperty>
propertyname="user">userproperty>
propertyname="password">passwordproperty>
server>
connectionmanagerlist>
connectionmanagername="defaultManager">
classname>com.meidusa.amoeba.net.AuthingableConnectionManagerclassname>
connectionmanager>
connectionmanagerlist>
dbserverlist>
dbservername="master">
factoryconfig>
classname>com.meidusa.amoeba.mysql.net.MysqlServerConnectionFactoryclassname>
propertyname="manager">defaultManagerproperty>
propertyname="port">3306property>
propertyname="ipAddress">10.0.38.37property>
propertyname="schema">testproperty>
propertyname="user">rootproperty>
propertyname="password">passwordproperty>
factoryconfig>
poolconfig>
classname>com.meidusa.amoeba.net.poolable.PoolableObjectPoolclassname>
propertyname="maxActive">500property>
propertyname="maxIdle">200property>
propertyname="minIdle">10property>
propertyname="minEvictableIdleTimeMillis">600000property>
propertyname="timeBetweenEvictionRunsMillis">600000property>
propertyname="testOnBorrow">trueproperty>
propertyname="testWhileIdle">trueproperty>
poolconfig>
dbserver>
dbservername="slave1">
factoryconfig>
classname>com.meidusa.amoeba.mysql.net.MysqlServerConnectionFactoryclassname>
propertyname="manager">defaultManagerproperty>
propertyname="port">3306property>
propertyname="ipAddress">10.0.38.22property>
propertyname="schema">testproperty>
propertyname="user">rootproperty>
propertyname="password">passwordproperty>
factoryconfig>
poolconfig>
classname>com.meidusa.amoeba.net.poolable.PoolableObjectPoolclassname>
propertyname="maxActive">500property>
propertyname="maxIdle">200property>
propertyname="minIdle">10property>
propertyname="minEvictableIdleTimeMillis">600000property>
propertyname="timeBetweenEvictionRunsMillis">600000property>
propertyname="testOnBorrow">trueproperty>
propertyname="testWhileIdle">trueproperty>
poolconfig>
dbserver>
dbservername="slave2">
factoryconfig>
... ...
factoryconfig>
poolconfig>
... ...
poolconfig>
dbserver>
dbservername="virtualSlave"virtual="true">
poolconfig>
classname>com.meidusa.amoeba.server.MultipleServerPoolclassname>
propertyname="loadbalance">1property>
propertyname="poolNames">slave1,slave2property>
poolconfig>
dbserver>
dbserverlist>
queryrouter>
classname>com.meidusa.amoeba.mysql.parser.MysqlQueryRouterclassname>
propertyname="ruleConfig">${amoeba.home}/conf/rule.xmlproperty>
propertyname="functionConfig">${amoeba.home}/conf/functionMap.xmlproperty>
propertyname="ruleFunctionConfig">${amoeba.home}/conf/ruleFunctionMap.xmlproperty>
propertyname="LRUMapSize">1500property>
propertyname="defaultPool">masterproperty>
propertyname="writePool">masterproperty>
propertyname="readPool">virtualSlaveproperty>
propertyname="needParse">trueproperty>
queryrouter>
amoeba>
rule.xml配置:
?xmlversion="1.0"encoding="gbk"?>
!DOCTYPEamoeba:ruleSYSTEM"rule.dtd">
amoeba:rulexmlns:amoeba="http://amoeba.meidusa.com/">
tablerulename="test_horiz"schema="test"defaultPools="master">
rulename="rule1">
parameters>IDparameters>
expression> ![CDATA[ ID 100000000]]>expression>
defaultpools>masterdefaultpools>
readpools>slave1readpools>
writepools>masterwritepools>
rule>
rulename="rule2">
parameters>IDparameters>
expression> ![CDATA[ IDbetween100000001and200000000 ]]>expression>
defaultpools>masterdefaultpools>
writepools>master2writepools>
readpools>slave2readpools>
rule>
rulename="rule3">
parameters>IDparameters>
expression> ![CDATA[ ID> 200000000 ]]>expression>
defaultpools>masterdefaultpools>
rule>
tablerule>
tablerulename="master"schema="test"defaultPools="master"/>
tablerulename="slave1"schema="test"defaultPools="slave1"/>
tablerulename="slave2"schema="test"defaultPools="slave2"/>
tablerulename="master"schema="t"defaultPools="master"/>
amoeba>
由于第一步主要还只是测试读写分离与数据的垂直切分,所以水平切分的规则设置的很简单,仅仅是按照ID的范围设置简单的规则。而设置一些更为复杂的规则。
总体测试效果还是比较满意的,预期的功能都全部正常,当然所用于测试的SQL语句也大都比较简单,主要还是根据当前工作中遇到的一些SQL。
这次测试没有进行性能测试,等后面再找时间测试一下,不知道有没有哪位朋友已经做过了相应的性能测试没?性能测试之后就要开始规划应用到某些应用上面去了
原文地址:Amoeba For MySQL 功能测试让人满意, 感谢原作者分享。

Kernelsecuritycheckfailure(内核检查失败)就是一个比较常见的停止代码类型,可蓝屏错误出现不管是什么原因都让很多的有用户们十分的苦恼,下面就让本站来为用户们来仔细的介绍一下17种解决方法吧。kernel_security_check_failure蓝屏的17种解决方法方法1:移除全部外部设备当您使用的任何外部设备与您的Windows版本不兼容时,则可能会发生Kernelsecuritycheckfailure蓝屏错误。为此,您需要在尝试重新启动计算机之前拔下全部外部设备。

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

Win10skype可以卸载吗是很多用户们都想知道的一个问题,因为很多的用户们发现自己电脑上的默认程序上有这个应用,担心删除后会影响到系统的运行,下面就让本站来为用户们来仔细的介绍一下Win10如何卸载SkypeforBusiness吧。Win10如何卸载SkypeforBusiness1、在电脑桌面点击Windows图标,再点击设置图标进入。2、点击“应用”。3、在搜索框中输入“Skype”,点击选中找到的结果。4、点击“卸载”。5

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

在mysql中,是否需要commit取决于存储引擎:1、若是不支持事务的存储引擎,如myisam,则不需要使用commit;2、若是支持事务的存储引擎,如innodb,则需要知道事务是否自动提交,因此需要使用commit。

“mysql-connector”是mysql官方提供的驱动器,可以用于连接使用mysql;可利用“pip install mysql-connector”命令进行安装,利用“import mysql.connector”测试是否安装成功。


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

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

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

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver CS6
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
