PDA

View Full Version : Multiple Instances


arshadparvez
03-22-2008, 08:26 PM
Hi;

I have a java application that down/up loads data from a serve. I need multiple connections to the server for faster data access. Presently, I have deployed the application on multiple machines, from where multiple instances are running. Will it be possible to deploy multiple instances of the application which run and simultaneously connect the server, while retaining data integrity among all the instances?

Thanks..

PeterNic
03-22-2008, 09:47 PM
arshadparvez,

If I understand your question correctly, then the answer is yes, as long as you store the data on a common NAS virtual appliance, and all Java application instances running on separate servers access their upload/download data from it, rather than from their local disks (the same as it would be in a physical system).

I have attached a sample of how such application would look like.

Let me know if this answered your question.

Best regards,
-- Peter