I'm processing huge amount of entities and persisting it to DB using hibernate. I've figured out that begining transaction take a lot of time in case of huge amount of data in the table up to a minute (Whole synchronization process took 20h when fetching the data from web service took near 3h).
Is there any way to improve this method persistence logic?
final EntityManager em = emf.createEntityManager();
try {
final MfBranch branch = <get data from web service>
em.getTransaction().begin(); // bottleneck
em.merge(branch);
em.getTransaction().commit();
} finally {
DisposableUtils.closeQuietly(em);
}
I would consider it reasonable to see merge or transaction commit operations to be time consuming, but why transaction begin is time consuming?
EntityManagerrather than creating a new one each time? Perhaps inject it with Spring for example? There may be some overhead with using a new one each time that could be avoided? – millhouse Sep 20 '12 at 6:46