实战-130W表增加字段耗时

Posted smily要开心

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实战-130W表增加字段耗时相关的知识,希望对你有一定的参考价值。

工作需要对130W的表增加字段,因为是操作线上数据库,所以提前在本地调查下耗时。

首先建表:

CREATE TABLE `alter_cloumn_test` (
  `id` int(11) unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8

生成13W条数据:

1.生成13W条插入语句脚本:insert_column_sql.sh  

for ((i=0; i<1300000;i++))
do
echo "insert into \`alter_cloumn_test\` values(${i});"
done

2.执行脚本insert_column_sql.sh  生成sql文件(insert_sql.sql)

sh insert_column_sql.sh > insert_sql.sql

3.计算插入13W条数据的耗时

echo `date +%s`
mysql -h ip -u userName -pPassWd databaseName < /root/wenwen.fu/sh/insert_sql.sql
echo `date +%s`

结果:

1486374924
1486375473
耗时:549s

计算增加字段的耗时:

echo `date +%s`
mysql -h ip -u userName -pPassWd databaseName -e "alter table alter_cloumn_test add period int(2) unsigned default 0"
echo `date +%s`

结果:

1486377130
1486377151
耗时:21s

  

  

  

以上是关于实战-130W表增加字段耗时的主要内容,如果未能解决你的问题,请参考以下文章

我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情

MySQL实战必备文章。DDL常用命令汇总及登录数据库相关命令!

R语言统计代码运行耗时实战:计算代码运行时间使用proc.time函数计算代码运行时间

mysql 垂直分表技术的实战演练,有实战代码。

mysql修改表中某个字段的默认值

从底部工作表对话框片段中获取价值