I have an JavaEE 6 / EJB3.1 / Glassfish 3.1.2 application that retrieves .xml pages from a remote computer, converts them to java objects, then persists each of them in my mysql database. There are tens of thousands of these .xml pages and I'm just adding them incrementally.
This is working great, except that it is very slow (70ms page retrieval + a tiny amount of time to convert & persist the entities).
I want to carry out this work concurrently to speed it up - what is the best method?
Possibly worth noting: each page retrieval updates a count in the mysql database for an OAuth credential it is using to get the page, and if it is at the max, it doesn't continue (throws an exception). I'm not sure if / how much this will complicate matters - but if two threads see it is below max, then get the page before updating the count it could go over the max.
My research so far has narrowed it down to two possibilities (feel free to add others though):
- Message Driven Beans - I imagine, though are probably wrong, that I would have a session bean sending url messages until the message queue is full (say 10 url's are added), then blocks until the queue is not full. Glassfish will create 10 instances of a message bean I create who each get one of the .xml from one of the urls, update the OAuth count, then send this .xml as a message to another queue with another message bean that converts & persists .xmls from this queue.
- Use the @Asynchronous method and create my own thread safe queue's? This could be much simpler and more suited to what I am doing but I'm not sure exactly how I would implement it.
Any advice would be appreciated!