发财的饭卡 · keytool : ...· 3 月前 · |
暗恋学妹的黑框眼镜 · Qt/C++报警抓图和录像/移动侦测入侵探测 ...· 1 年前 · |
侠义非凡的哑铃 · python ...· 1 年前 · |
淡定的橙子 · iOS使用Jenkins自动打包+上传到 ...· 1 年前 · |
淡定的茶壶 · java.sql.SQLException: ...· 1 年前 · |
我正在使用spring data saveAll在Oracle数据库中保存3500条记录,但是执行速度非常慢,有没有办法进行批量插入或其他更快的方法?
noteRepository.saveAll(noteEntityList);//<- this one is slow for 3000 records
提前感谢
发布于 2021-04-20 01:25:46
默认情况下,saveAll不会创建批处理,需要开启批处理。您需要设置以下属性才能启用批处理
spring.jpa.properties.hibernate.jdbc.batch_size=100
spring.jpa.properties.hibernate.order_inserts=true (if inserts)
spring.jpa.properties.hibernate.order_updates=true (if updates)
第一个属性批量收集事务,第二个属性收集按实体分组的语句。
有关更多详细信息,请查看此帖子 How to do bulk (multi row) inserts with JpaRepository?
https://stackoverflow.com/questions/67165998
复制相似问题
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2024 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号: 粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287