之前看到的TiDB和MySql的性能对比都是大量短耗时请求下的压测,单机情况下TiDB和MySql的确有些差距,不过笔者最近碰到的场景更多是sql要扫描的行数不小的情况下单sql比较耗时的问题,所以自己做了个简单测试这类型sql的耗时。

TiDB单机环境部署

按照官方文档(https://pingcap.com/docs-cn/dev/how-to/get-started/deploy-tidb-from-docker-compose/)

直接使用docker-composer部署

git clone https://github.com/pingcap/tidb-docker-compose.git  # 下载

cd tidb-docker-compose && docker-compose pull # 拉取镜像
docker-compose up -d # 启动

命令行客户端连接方式

mysql -h 127.0.0.1 -P 4000 -u root

测试

表结构

create table testTable (
`id` int(10) unsigned auto_increment primary key,
`uid` int(10) not null default 0,
`day` int(6) not null default 0,
`field1` varchar(16) not null default '',
`field2` tinyint(3) not null default 0,
`field3` tinyint(3) not null default 0,
`field4` tinyint(3) not null default 0,
`field5` varchar(32) not null default '',
`field6` varchar(32) not null default '',
`field7` varchar(32) not null default '',
key `uid_day_idx` (`uid`,`day`,`field1`, `field3`)
) engine=InnoDB default charset=utf8;

插入数据

  • 5000个随机的uid

  • day 平均分布在20190801~20190830

  • filed1 随机取'a0' ~ 'a9'

  • field3 随机取0~10

插入数据脚本

<?php
$maxRecordNum = 10000000; $tableName = 'testTable';
$host = '127.0.0.1';
$port = '4000';
$dbname = 'test';
$username = 'root';
$password = '';
$dsn = "mysql:host={$host};dbname={$dbname};port={$port}"; function getDay($maxRecordNum, $i) {
$item = (int)($maxRecordNum / 30);
$day = 20190801;
$add = (int)($i/ $item);
return $day + $add;
} function getRandomFieldOne() {
static $fieldsOne = [
"'a0'", "'a1'", "'a2'", "'a3'", "'a4'", "'a5'", "'a6'", "'a7'", "'a8'", "'a9'",
];
return $fieldsOne[rand(0, count($fieldsOne) -1)];
} function getRandomFieldTwo() {
return rand(0, 1);
} function getRandomFieldThree() {
return rand(0, 10);
} function getRandomFieldFour() {
return rand(0, 8);
} function generateRecordsValue($day) {
$minUid = 200000000;
$maxUid = $minUid + 5000; $arrRecord = [
'uid' => rand($minUid, $maxUid),
'day' => $day,
'field1' => getRandomFieldOne(),
'field2' => getRandomFieldTwo(),
'field3' => getRandomFieldThree(),
'field4' => getRandomFieldFour(),
'field5' => "'static'",
'field6' => "'static'",
'field7' => "'static'",
];
return $arrRecord;
} try {
$db = new PDO($dsn, $username, $password); $db->query("truncate {$tableName};");
$db->query("alter table {$tableName} AUTO_INCREMENT=1;");
$arr = [];
for ($i = 1; $i <= $maxRecordNum; $i++) {
$day = getDay($maxRecordNum, $i);
$arr[] = '(' . implode(',', generateRecordsValue($day)) . ')';
if ($i % 10000 === 0) {
$sql = "INSERT INTO {$tableName} (" . implode(',', array_keys(generateRecordsValue(0))) . ") values" . implode(',', $arr) .';';
$res = $db->query($sql);
$arr = [];
sleep(1);
echo "{$i}\n";
}
}
} catch (Exception $e) {
echo $e->getMessage();
}

测试sql脚本

查询15天范围内, 2000个uid, 附带两个字段条件

<?php
$tableName = 'testTable';
$host = '127.0.0.1';
$dbname = 'test';
$username = 'root';
$port = '4000';
$password = '';
//$port = '3306';
//$password = 'guapi123';
$dsn = "mysql:host={$host};dbname={$dbname};port={$port}"; try {
$db = new PDO($dsn, $username, $password);
$arrUid = [];
$minUid = 200000000;
for ($i = 0; $i < 2000; $i++) {
$arrUid[] = $minUid + $i;
}
$total = 0;
for ($i = 0; $i < 15; $i++) {
$startDay = 20190801 + $i;
$endDay = $startDay + 14;
$sql = "select field4 from {$tableName} where uid in (" . implode(',', $arrUid) . ") and day >= {$startDay} and day<={$endDay} and field1 = 'a0' and field3 in (3, 5);";
$startTime = microtime(true);
$res = $db->query($sql);
$endTime = microtime(true);
$cost = (int)(($endTime - $startTime) * 1000);
echo "cost:{$cost}ms\n";
$total += $cost;
}
echo "avg cost:" . (int)($total / 15) . "ms\n"; } catch (Exception $e) {
echo $e->getMessage();
}

测试结果(Mysql和TiDB缓存策略都是默认配置)

TiDB

cost:1744ms
cost:646ms
cost:720ms
cost:614ms
cost:644ms
cost:659ms
cost:662ms
cost:731ms
cost:728ms
cost:669ms
cost:816ms
cost:682ms
cost:778ms
cost:857ms
cost:718ms
avg cost:777ms

Mysql

cost:5256ms
cost:5165ms
cost:5300ms
cost:5461ms
cost:5376ms
cost:5334ms
cost:5435ms
cost:5339ms
cost:5314ms
cost:5278ms
cost:5346ms
cost:5244ms
cost:5387ms
cost:5497ms
cost:5633ms
avg cost:5357ms

一个长耗时SQL在TiDB和Mysql上的耗时测试的更多相关文章

  1. java web(一) 使用sql标签库+tomcat+mysql手动创建一个jsp练习总结

    2016-09-0111:06:53                                     使用sql标签库+tomcat+mysql手动创建一个jsp 1. 1.1安装tomcat ...

  2. 一个高级的J2E工程师需要面对MySQL要有那些基本功夫呢<上>

    1. MySQL的架构介绍1.1 MySQL简介: MySQL是一个关系型数据库管理系统,由瑞典MySQL AB公司开发,目前属于Oracle公司. MySQL是一种关联数据库管理系统,将数据保存在不 ...

  3. SQL Server定时自动抓取耗时SQL并归档数据发邮件脚本分享

    SQL Server定时自动抓取耗时SQL并归档数据发邮件脚本分享 第一步建库和建表 USE [master] GO CREATE DATABASE [MonitorElapsedHighSQL] G ...

  4. SQL Server定时自动抓取耗时SQL并归档数据脚本分享

    原文:SQL Server定时自动抓取耗时SQL并归档数据脚本分享 SQL Server定时自动抓取耗时SQL并归档数据脚本分享 第一步建库 USE [master] GO CREATE DATABA ...

  5. MySQL笔记(5)-- SQL执行流程,MySQL体系结构

    MySQL的体系结构,可以清楚地看到 SQL 语句在 MySQL 的各个功能模块中的执行过程:Server层包括连接层.查询缓存.分析器.优化器.执行器等,涵盖MySQL的大多数核心服务功能,以及所有 ...

  6. 无法复现的“慢”SQL《死磕MySQL系列 八》

    系列文章 四.S 锁与 X 锁的爱恨情仇<死磕MySQL系列 四> 五.如何选择普通索引和唯一索引<死磕MySQL系列 五> 六.五分钟,让你明白MySQL是怎么选择索引< ...

  7. SQL语句优化、mysql不走索引的原因、数据库索引的设计原则

    SQL语句优化 1 企业SQL优化思路 1.把一个大的不使用索引的SQL语句按照功能进行拆分 2.长的SQL语句无法使用索引,能不能变成2条短的SQL语句让它分别使用上索引. 3.对SQL语句功能的拆 ...

  8. sql文件批量导入mysql数据库

    有一百多个sql文件肿么破?一行一行地导入数据库肯定是极其愚蠢的做法,但是我差点就这么做了... 网上首先找到的方法是:写一个xxx.sql文件,里边每一行都是source *.sql ...,之后再 ...

  9. 一个有趣的 SQL 查询(查询7天连续登陆)

    一个有趣的 SQL 查询 一个朋友有这样一个SQL查询需求: 有一个登录表(tmp_test),包含用户ID(uid)和登录时间(login_time).表结构如下: . row ********** ...

随机推荐

  1. Using HAProxy as an API Gateway, Part 1 [Introduction]

    转自:https://www.haproxy.com/blog/using-haproxy-as-an-api-gateway-part-1/ An API gateway handles load ...

  2. cyyz: Day 4 网络流整理

    Day 4 网络流的理论性知识(算了..我自己都看不下去,还是整理些例题以后复习用吧qaq): 一.PPT(主要内容)   二.搜自度娘 定义: 年,L.R. 福特和 D.R. 富尔克森等人给出了解决 ...

  3. 02-线性结构3 Reversing Linked List (25 分)

    Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elem ...

  4. 全面解读Group Normalization,对比BN,LN,IN

    前言 Face book AI research(FAIR)吴育昕-何恺明联合推出重磅新作Group Normalization(GN),提出使用Group Normalization 替代深度学习里 ...

  5. Linux系统学习(二)一Linux基本操作

    一.Linux的目录结构 1.1 Linux的目录结构图 1.2 目录内容 /:这就是根目录.对你的电脑来说,有且只有一个根目录.所有的东西,我是说所有的东西都是从这里开始.举个例子:当你在终端里输入 ...

  6. 集成了SSM框架的系统怎么做测试?

    1.首先在测试文件夹下新建一个测试基类BaseTest BaseTest中的代码如下: package wbl_ssm_blog.mapper; import org.junit.Test; impo ...

  7. MySQL各种类型实验

    实验一:整数 -- 测试一 create database test;-- 新建数据库,如果已经有了就不需要再创建了 USE test;-- 打开数据库 drop table if exists te ...

  8. 大数据应用期末总评——Hadoop综合大作业

    作业要求来自:https://edu.cnblogs.com/campus/gzcc/GZCC-16SE2/homework/3339 Hadoop综合大作业 要求: 1.将爬虫大作业产生的csv文件 ...

  9. 廖雪峰Git教程3

    转自:https://www.liaoxuefeng.com/wiki/896043488029600 [标签管理] 发布一个版本时,我们通常先在版本库中打一个标签(tag),这样,就唯一确定了打标签 ...

  10. 对象与json字符串转换类设计

    public static class JsonNewtonsoft { /// <summary> /// 把对象转换为JSON字符串 /// </summary> /// ...