Skip to content
Advertisement

Batch select and iterate mysql results in java to decrease waiting time

I have made an application that visualizes locations with diatom species found at those locations. My problem is, it’s extremely slow. When 128 locations are found, it takes roughly 130 seconds to visualise. With 6000+ locations in my database, this would be way too slow. The reason for this speed is the way I’m retrieving all diatoms found at a location for each location. I am opening a connection to the database for each iteration and I assume that’s where a lot of time is lost. Is there a way to speed this up? I have looked at addBatch and executeBatch. But how do I iterate the results if I would use batches. Or is there a different way I should be doing this?

For each Location object in listOfLocations, I use the Location object.getName to retrieve all diatom species at that location from the database and add those as a hashmap back to the same Location object that is in listOfLocations.

JavaScript

To summarize: how can i open the connection with the database, execute all queries in one go and iterate the results to readd them to the Location objects.

Advertisement

Answer

You should phrase this as a WHERE IN (...) query

JavaScript

To be explicit here, the above code generates a WHERE IN (...) clause with the same number of ? placeholders as there are locations in your listOfLocations list. So, assuming it had 5 placeholders, the WHERE clause would be this:

JavaScript

We then iterate the list of locations, and bind each value to a ? placeholder above. This approach avoids the multiple queries, because now we can cover every location with just a single query.

Advertisement