memory « Batch « JPA Q&A





1. Is Hibernate good for batch processing? What about memory usage?    stackoverflow.com

I have a daily batch process that involves selecting out a large number of records and formatting up a file to send to an external system. I also need to ...

2. Hibernate: Walk millions of rows and don't leak memory    stackoverflow.com

The below code functions, but Hibernate never lets go of its grip of any object. Calling session.clear() causes exceptions regarding fetching a joined class, and calling session.evict(currentObject) before retrieving the next ...

3. Hibernate Batch Inserts/Updates (Out of Memory)    forum.hibernate.org

Newbie Joined: Tue Apr 04, 2006 10:58 pm Posts: 6 Problem: I'm running out memory trying to batch 120,000 records from one database to another. I have a JDBC result set that I pull data from an oracle database and then I have Hibernate DAO methods that save the data into a MySQL database. The problem I'm having is that hibernate ...