I am porting fat Java client code to a server architecture with a lean client.
The server needs to run one instance of the code for each client. The code is multithreaded and runs for long times (weeks) but has only occasional interaction with the client. The number of clients will be in the thousands. Each client needs ~20MB of heap.
I have now two options,
- start a separate JVM on the server for each client
- modify my code so that all requests and calculation is done in shared space for each client (like in a web-application)
I can see pros and cons for each. For multiple JVMs:
Pros:
- processes are separate, if one hangs just kill it and restart. All others won't care.
- resources can be limited, so that one client cannot eat up all CPU / Memory
- easily distributed on several machines
Cons:
- the complete JRE class library is loaded multiple times
- not the JEE way of doing things
- will every client need to talk over a separate port?
Are there any best practices which you recommend?
Do you know of any good reference book / article on the subject?
Is there a framework which uses only one JVM but runs several copies of code as if it was separate process space (with limited resources etc)?