开发者

Changing hibernate batch size programmatically

开发者 https://www.devze.com 2022-12-28 05:53 出处:网络
Is possible to change hibernate.jdbc.batch_size programmatically? I understand hibernate.jdbc.batch_size is a application level parameter, wanted to know if I can use it

Is possible to change hibernate.jdbc.batch_size programmatically? I understand hibernate.jdbc.batch_size is a application level parameter, wanted to know if I can use it specifically for certain HQL inserts and not others. I would change the code only for those HQL inserts

T开发者_如何学编程he big picture is that I need to introduce batch inserts to make the web application performant in some scenarios, but I do not want to jeopardize the normal inserts which work right now.


To my knowledge, you can't change the configuration settings of a SessionFactory at runtime (the settings are not exposed via the public API and are immutable).

In other words, I would use another SessionFactory (and set the hibernate.jdbc.batch_size property in the Configuration object used to build it) in the specific scenarios needing it.


From this blog post:

Hibernate 5.2 adds support for customizing the JDBC batch size at the Persistence Context level

entityManager.unwrap(Session.class)
        .setJdbcBatchSize(10)
0

精彩评论

暂无评论...
验证码 换一张
取 消