Session-Level Batching (Hibernate 5.2 or Higher) in MySQL
Description: Batch inserts via Hibernate session-level batching (Hibernate 5.2 or higher) in MySQL.
Key points:
- in
application.propertiessetspring.jpa.properties.hibernate.generate_statistics(just to check that batching is working) - in
application.propertiesset JDBC URL withrewriteBatchedStatements=true(optimization for MySQL) - in
application.propertiesset JDBC URL withcachePrepStmts=true(enable caching and is useful if you decide to setprepStmtCacheSize,prepStmtCacheSqlLimit, etc as well; without this setting the cache is disabled) - in
application.propertiesset JDBC URL withuseServerPrepStmts=true(this way you switch to server-side prepared statements (may lead to signnificant performance boost)) - in case of using a parent-child relationship with cascade persist (e.g. one-to-many, many-to-many) then consider to set up
spring.jpa.properties.hibernate.order_inserts=trueto optimize the batching by ordering inserts - in entity, use the assigned generator since MySQL
IDENTITYwill cause insert batching to be disabled - the Hibernate
Sessionis obtained by un-wrapping it viaEntityManager#unwrap(Session.class) - the batching size is set via
Session#setJdbcBatchSize(Integer size)and get viaSession#getJdbcBatchSize() - in DAO, flush and clear the Persistence Context from time to time; this way you avoid to "overwhelm" the Persistence Context
- if is not needed, then ensure that Second Level Cache is disabled via
spring.jpa.properties.hibernate.cache.use_second_level_cache=false


