文章详情页
mysql - 数据库批量插入数据的速度是否与索引有关?
浏览:186日期:2022-06-16 09:46:08
问题描述
在数据库批量插入数据时,插入数据的速度是否与创建的索引有关?如果有关请给出指相关文档,谢谢!
问题解答
回答1:当然会有影响,插入数据的时候会导致索性的更新。索性越多,插入会越慢。可以看文档描述Although it can be tempting to create an indexes for every possible column used in a query, unnecessary indexes waste space and waste time for MySQL to determine which indexes to use. Indexes also add to the cost of inserts, updates, and deletes because each index must be updated. You must find the right balance to achieve fast queries using the optimal set of indexes.
回答2:索引对批量插入数据的影响非常大,道理很简单,一方面是写表的时候需要同时写索引,另外就对于唯一索引需要检查数据是否有重复。
对于大批量的数据导入,一般都是先把索引去掉,等数据导入完成后再重建索引。
相关文章:
1. 在windows下安装docker Toolbox 启动Docker Quickstart Terminal 失败!2. 计算机 - 我学习了C语言,数据结构和一点点java基础,想自学C++,请问买什么入门书籍好?3. dockerfile - 我用docker build的时候出现下边问题 麻烦帮我看一下4. docker - 如何修改运行中容器的配置5. docker绑定了nginx端口 外部访问不到6. 前端 - css中关于设置透明度的问题,有点混乱7. 我在centos容器里安装docker,也就是在容器里安装容器,报错了?8. docker start -a dockername 老是卡住,什么情况?9. docker-compose 为何找不到配置文件?10. docker 下面创建的IMAGE 他们的 ID 一样?这个是怎么回事????
排行榜
