Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to implement a distributed data storage using a client/server architecture. Each data item will be stored persistently in disk in one of several remote servers. The client uses a library to update and query the data, shielding the client from its actual location. This should allow a client to associate keys (String) to values(byte[]), much as a Map does. The system must ensure that the amount of data stored in each server is approximately the same. The set of servers is known beforehand by other servers and clients. Both the client and the server will be written in Java, using sockets, threads, and files.

I open this topic with the objective of discussing the best way to implement this idea, assuming simplicity, what are the issues of this implementation, performance measurements and discussion of the limitations.

share|improve this question
What tools and libraries have you looked at? It looks as if a lot of the NoSQL tools would be very effective for you. – Fortyrunner Nov 26 '11 at 23:21
I don't want to use Cassandra, LevelDB, nothing of that. What I propose is a full implementation. – hashdava Nov 26 '11 at 23:24
You obviously have good reasons for wanting to re-invent a wheel! If that is the case then remember that Great artists steal. I would at least suggest that you look at the source of some of the other implementations. – Fortyrunner Nov 26 '11 at 23:27
Yes I agree with you in that matter ;). However I open this topic not only for talking about the NoSQL("NoREL") tools that exists but also about simpliciy, issues and performance measurements for the implementation that I propose. What's your opinion about that? – hashdava Nov 26 '11 at 23:32
2  
Stack Overflow isn't really intended for opinions. Its more for answers for specific questions. You would be better off moving it to the Programmers Stack Exchange. FWIW You could implement something really simply and dumb using REST and simply post your updates to your (known) set of servers. – Fortyrunner Nov 26 '11 at 23:36

closed as not constructive by Stephen C, Sjoerd C. de Vries, casperOne Nov 29 '11 at 18:41

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.