How to build a distributed robust linked list on several computers on the net? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T14:25:25Z http://stackoverflow.com/feeds/question/607382 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/607382/how-to-build-a-distributed-robust-linked-list-on-several-computers-on-the-net 0 How to build a distributed robust linked list on several computers on the net? Flinkman 2009-03-03T17:40:37Z 2009-03-06T19:42:47Z <p>I was thinking about building a program that use a raid(disk) like algorithms. If one computer dies. The next will step in. In it's place. And it need to scale from 1 - 1000 computers.</p> <p>I need some advice.</p> <p>What the name of the algorithms I'm need to learn?</p> <p>At one point I thought it was possible to build it on top of git.</p> http://stackoverflow.com/questions/607382/how-to-build-a-distributed-robust-linked-list-on-several-computers-on-the-net/607389#607389 0 Answer by Eric Petroelje for How to build a distributed robust linked list on several computers on the net? Eric Petroelje 2009-03-03T17:42:47Z 2009-03-03T17:51:51Z <p>BitTorrent? :)</p> http://stackoverflow.com/questions/607382/how-to-build-a-distributed-robust-linked-list-on-several-computers-on-the-net/607406#607406 4 Answer by David Segonds for How to build a distributed robust linked list on several computers on the net? David Segonds 2009-03-03T17:48:22Z 2009-03-03T17:48:22Z <p>You may want to read this <a href="http://labs.google.com/papers/gfs.html" rel="nofollow">paper</a> on the Google File System. From the abstract:</p> <blockquote> <p>We have designed and implemented the Google File System, a scalable distributed file system for large distributed data-intensive applications. It provides fault tolerance while running on inexpensive commodity hardware, and it delivers high aggregate performance to a large number of clients. </p> </blockquote> http://stackoverflow.com/questions/607382/how-to-build-a-distributed-robust-linked-list-on-several-computers-on-the-net/607419#607419 0 Answer by Jeff Moser for How to build a distributed robust linked list on several computers on the net? Jeff Moser 2009-03-03T17:51:50Z 2009-03-03T17:51:50Z <p>You could build something like <a href="http://www.danga.com/memcached/" rel="nofollow">memcached</a>. Each hash entry could be a file block (e.g. SHA hash of block to contents).</p> http://stackoverflow.com/questions/607382/how-to-build-a-distributed-robust-linked-list-on-several-computers-on-the-net/607422#607422 1 Answer by f3lix for How to build a distributed robust linked list on several computers on the net? f3lix 2009-03-03T17:52:45Z 2009-03-03T17:52:45Z <p><a href="http://en.wikipedia.org/wiki/Distributed%5Fhash%5Ftable" rel="nofollow">Distributed hash tables</a> pop into my mind...</p> http://stackoverflow.com/questions/607382/how-to-build-a-distributed-robust-linked-list-on-several-computers-on-the-net/607457#607457 0 Answer by flodin for How to build a distributed robust linked list on several computers on the net? flodin 2009-03-03T18:01:21Z 2009-03-03T18:01:21Z <p>Also check out the <a href="http://en.wikipedia.org/wiki/MapReduce" rel="nofollow">MapReduce</a> algorithm. It's a relatively simple way of getting high scalability, that doesn't force the algorithm designer to think about locking, communication, etc. There are several implementations available, for example the open-source <a href="http://hadoop.apache.org/" rel="nofollow">Hadoop</a> by the Apache foundation.</p> http://stackoverflow.com/questions/607382/how-to-build-a-distributed-robust-linked-list-on-several-computers-on-the-net/614281#614281 1 Answer by Talip Ozturk for How to build a distributed robust linked list on several computers on the net? Talip Ozturk 2009-03-05T10:41:02Z 2009-03-05T10:41:02Z <p>Try <a href="http://www.hazelcast.com" rel="nofollow">Hazelcast</a>. It has distributed implementation of Set, List and more. Hazelcast is an open source transactional, distributed/partitioned implementation of queue, topic, map, set, list, lock and executor service. It is super easy to work with; just add hazelcast.jar into your classpath and start coding. Almost no configuration is required.</p> <p>Hazelcast is released under Apache license and enterprise grade support is also available. Code is hosted at <a href="http://code.google.com/p/hazelcast/" rel="nofollow">Google Code</a>.</p> http://stackoverflow.com/questions/607382/how-to-build-a-distributed-robust-linked-list-on-several-computers-on-the-net/615516#615516 1 Answer by bradheintz for How to build a distributed robust linked list on several computers on the net? bradheintz 2009-03-05T16:23:18Z 2009-03-05T16:23:18Z <p>I've seen both Hadoop and the Google File System mentioned, but nobody has specifically mentioned <a href="http://hadoop.apache.org/core/docs/r0.19.1/hdfs%5Fdesign.html" rel="nofollow" title="HDFS">HDFS</a> - the distributed filesystem that comes with Hadoop. You can set the desired level of redundancy, and lose the occasional node without losing your data.</p> <p>One caveat: You need to make sure the one machine that holds the "namenode" (the master machine and single point of failure in an HDFS cluster) is solid - RAID mirroring, backups, the works. You lose the namenode, you lose the cluster.</p> http://stackoverflow.com/questions/607382/how-to-build-a-distributed-robust-linked-list-on-several-computers-on-the-net/620151#620151 -1 Answer by Brett McCann for How to build a distributed robust linked list on several computers on the net? Brett McCann 2009-03-06T19:42:47Z 2009-03-06T19:42:47Z <p>You might want to check out <a href="http://www.appistry.com" rel="nofollow">Appistry EAF</a>. Its a distributed execution platform. It handles all the failover of tasks for you, so you don't have to build that into your code. If one node fails, another node automatically takes over. And unlike Grid, there is no centralized controller, to you remove the single point of failure/bottleneck of those types of solutions.</p> <p>There is a free download available up to 5 machines.</p>