| Article: |
Space-Based Programming | |
| Subject: | There's an inherent problem with JavaSpaces | |
| Date: | 2003-03-20 06:57:25 | |
| From: | anonymous2 | |
|
We looked into JavaSpaces as a way to distribute requests to servers, as with the Master-Worker architecture mentioned in the article. The Master would be a web server that would attach an ID to a request, put it in the space and wait for a result object with that ID. Workers would grab the next available request, crunch it, and put the result back in the space.
|
||
Showing messages 1 through 2 of 2.
-
There's an inherent problem with JavaSpaces
2003-03-20 18:05:49 tcopeland [Reply | View]
Hm.... you're certainly more familiar with your project than I am... and that's true, putting an entry in a space doesn't mean it'll get picked up. But it's the same with a JMS message - if you're doing publish/subscribe and there's no one subscribed, you can publish all you want and no one will get it. A JavaSpace client can call notify() to get a callback when something gets put in the space - why wouldn't that work with your app?
I've used JavaSpaces on a small utility that searches for copied/pasted code and was suprised at how easy it was to program JavaSpaces. There's an initial hump to get over what with the rmid and all that stuff, but once I got that stuff worked out and wrote some scripts to automate deployment of new clients and such, all was well.
Yours,
Tom




http://www.javaworld.com/javaworld/jw-10-2000/jw-1002-jiniology_p.html