How to build a distributed robust linked list on several computers on the net? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T14:25:25Zhttp://stackoverflow.com/feeds/question/607382http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/607382/how-to-build-a-distributed-robust-linked-list-on-several-computers-on-the-net0How to build a distributed robust linked list on several computers on the net?Flinkman2009-03-03T17:40:37Z2009-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#6073890Answer by Eric Petroelje for How to build a distributed robust linked list on several computers on the net?Eric Petroelje2009-03-03T17:42:47Z2009-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#6074064Answer by David Segonds for How to build a distributed robust linked list on several computers on the net?David Segonds2009-03-03T17:48:22Z2009-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#6074190Answer by Jeff Moser for How to build a distributed robust linked list on several computers on the net?Jeff Moser2009-03-03T17:51:50Z2009-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#6074221Answer by f3lix for How to build a distributed robust linked list on several computers on the net?f3lix2009-03-03T17:52:45Z2009-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#6074570Answer by flodin for How to build a distributed robust linked list on several computers on the net?flodin2009-03-03T18:01:21Z2009-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#6142811Answer by Talip Ozturk for How to build a distributed robust linked list on several computers on the net?Talip Ozturk2009-03-05T10:41:02Z2009-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#6155161Answer by bradheintz for How to build a distributed robust linked list on several computers on the net?bradheintz2009-03-05T16:23:18Z2009-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-1Answer by Brett McCann for How to build a distributed robust linked list on several computers on the net?Brett McCann2009-03-06T19:42:47Z2009-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>