Distributed Filesystem | ||
---|---|---|
Apache HDFS | The Hadoop Distributed File System (HDFS) offers a way to store large files across multiple machines. Hadoop and HDFS was derived from Google File System (GFS) paper. |
1. hadoop.apache.org
2. Google FileSystem - GFS Paper 3. Cloudera Why HDFS 4. Hortonworks Why HDFS |
Red Hat GlusterFS | GlusterFS is a scale-out network-attached storage file system. GlusterFS was developed originally by Gluster, Inc., then by Red Hat, Inc., after their purchase of Gluster in 2011. |
1. www.gluster.org
2. Red Hat Hadoop Plugin |
Quantcast File System QFS |
QFS is an open-source distributed file system software package for
large-scale MapReduce or other batch-processing workloads. It was
designed as an alternative to Apache Hadoop’s HDFS, intended to deliver
better performance and cost-efficiency for large-scale processing clusters.
It is written in C++ and has fixed-footprint memory management. QFS uses
Reed-Solomon error correction as method for assuring reliable access to data.
Reed–Solomon coding is very widely used in mass storage systems to correct the burst errors associated with media defects. Rather than storing three full versions of each file like HDFS, resulting in the need for three times more storage, QFS only needs 1.5x the raw capacity because it stripes data across nine different disk drives. |
1. QFS site
2. GitHub QFS 3. HADOOP-8885 |