posted 13 years ago
I'm using openCSV to read through a file that has 500K rows, for each row it must query a table to see if a record exist and then if it does it creates a new record on another table.
Then I have another csv file that, using openCSV, i write the result to.
I seem to have a memory leak that within reading 100K records grows my app a gig. I'm not sure if anyone has worked with openCSV and could maybe catch something obvious. I
think I've cleared my two method calls from being the culprits. getAccountPartyIdByEmail() and addPartyToPartyGroup()
Profiling this app can suck and I hoped to be spared doing so....