MySQL快速插入一亿测试数据
CREATE TABLE `t_user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `c_user_id` varchar(36) NOT NULL DEFAULT ’’ COMMENT ’用户Id’, `c_name` varchar(22) NOT NULL DEFAULT ’’ COMMENT ’用户名’, `c_province_id` int(11) NOT NULL COMMENT ’省份Id’, `c_city_id` int(11) NOT NULL COMMENT ’城市Id’, `create_time` datetime NOT NULL COMMENT ’创建时间’, PRIMARY KEY (`id`), KEY `idx_user_id` (`c_user_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;1.2 创建临时表
CREATE TABLE `tmp_table` ( `id` int(11) NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2、生成数据2.1 用 python生成 【一亿】 记录的数据文件(这个确实稍微花点时间)python -c 'for i in range(1, 1+100000000): print(i)' > base.txt
2.2 将生成的文件导入到临时表tmp_table中找到对应的数据库
Type ’help;’ or ’h’ for help. Type ’c’ to clear the current input statement. mysql> use test;Database changedmysql> show tables;+----------------+| Tables_in_test |+----------------+| student|| t_user || tmp_table |+----------------+3 rows in set (0.00 sec)
执行导入命令
mysql> load data infile ’E:/base.txt’ replace into table tmp_table;ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statementmysql>
导入数据时有可能会报错,原因是mysql默认没有开secure_file_priv( 这个参数用来限制数据导入和导出操作的效果,例如执行LOAD DATA、SELECT … INTO OUTFILE语句和LOAD_FILE()函数。这些操作需要用户具有FILE权限。 )
解决办法:在mysql的配置文件中(my.ini 或者 my.conf)中添加 secure_file_priv = 文件所在的路径 , 然后重启mysql 解决。添加自己文件放置的路径即可。
可以用 show variables like ’%secure%’; 先看一下配置:
mysql> show variables like ’%secure%’;+--------------------------+-------+| Variable_name | Value |+--------------------------+-------+| require_secure_transport | OFF || secure_auth | ON || secure_file_priv | NULL |+--------------------------+-------+3 rows in set, 1 warning (0.00 sec)
说明:
secure_file_prive=null 限制mysqld 不允许导入导出secure_file_priv=/var/lib/mysql-files/ 限制mysqld的导入导出只能发生在/var/lib/mysql-files/目录下secure_file_priv=’ ’ 不对mysqld的导入导出做限制
注意:配置要添加到 [mysqld] 节点下,至于路径加不加引号,你可以试试:
重启MySQL,先查看配置:
mysql> use test;Database changedmysql> show variables like ’%secure%’;+--------------------------+-------+| Variable_name | Value |+--------------------------+-------+| require_secure_transport | OFF || secure_auth | ON || secure_file_priv | E: |+--------------------------+-------+3 rows in set, 1 warning (0.00 sec)
再重新导入:
mysql> load data infile ’E:/base.txt’ replace into table tmp_table;Query OK, 100000000 rows affected (3 min 53.42 sec)Records: 100000000 Deleted: 0 Skipped: 0 Warnings: 0 mysql>
亿级数据,233.42s,看一下别人的数据,差不多就是这个。
3、以临时表为基础数据,插入数据到t_user中一亿数据需要:快半个小时了。。。(或许直接在命令行下运行更快点...)
更新创建时间字段让插入的数据的创建时间更加随机:
mysql> UPDATE t_user SET create_time=date_add(create_time, interval FLOOR(1 + (RAND() * 7)) year);Query OK, 100000000 rows affected (7 min 24.17 sec)Rows matched: 100000000 Changed: 100000000 Warnings: 0 mysql> UPDATE t_user SET create_time=date_add(create_time, interval FLOOR(1 + (RAND() * 7)) year);Query OK, 100000000 rows affected (8 min 2.49 sec)Rows matched: 100000000 Changed: 100000000 Warnings: 0
到此,一亿数据插入结束。
4、参考MySQL如何快速的创建千万级测试数据
The MySQL server is running with the --secure-file-priv option
到此这篇关于MySQL快速插入一亿测试数据的文章就介绍到这了,更多相关MySQL 插入一亿数据内容请搜索好吧啦网以前的文章或继续浏览下面的相关文章希望大家以后多多支持好吧啦网!
相关文章:
1. mysql like语句问题2. mysql启动时报错 ERROR! Manager of pid-file quit without3. 学好Oracle的六条总结4. 巧用SQL语言在ACCESS数据库中批量替换内容5. MySQL中 concat函数的使用6. 数据库Oracle9i的企业管理器简介7. Windows下不能启动mysql服务--错误总结8. 如何远程调用ACCESS数据库9. Mysql故障排除:Starting MySQL. ERROR! Manager of pid-file quit without updating file10. MYSQL数据库存文本转存数据库问题