MooseFS Professional Edition - release under proprietary license in binary packages form.
Design
The MooseFS follows similar design principles as Fossil, Google File System, Lustre or Ceph. The file system comprises three components:
Metadata server — manages the location of files, file access and namespace hierarchy. The current version of MooseFS does support multiple metadata servers and automatic failover. Clients only talk to the MDS to retrieve/update a file's layout and attributes; the data itself is transferred directly between clients and chunk servers. The Metadata server is a user-space daemon; the metadata is kept in memory and lazily stored on local disk.
Metalogger server — periodically pulls the metadata from the MDS to store it for backup. Since version 1.6.5, this is an optional feature.
Chunk servers — store the data and optionally replicate it among themselves. There can be many of them, though the scalability limit has not been published. The biggest cluster reported so far consists of 160 servers. The Chunk server is also a user-space daemon that relies on the underlying local file system to manage the actual storage.
Clients — talk to both the MDS and CSS. MooseFS clients mount the file system into user-space via FUSE.
Features
To achieve high reliability and performance MooseFS offers the following features:
Fault-tolerance — MooseFS uses replication, data can be replicated across chunkservers, the replication ratio is set per file/directory. If replicas fail the data will still be available. At the moment MooseFS does not offer any other technique for fault-tolerance. Fault-tolerance for very big files thus requires vast amount of space - N*filesize instead of filesize+ as would be the case for RAID 4, RAID 5 or RAID 6. Version 4.x PRO of MooseFS implements 8+n Erasure Coding.
Striping — Large files are divided into chunks that might be stored on different chunk servers in order to achieve higher aggregate bandwidth.
Load balancing — MooseFS attempts to use storage resources equally, the current algorithm seems to take into account only the consumed space.
Security — Apart from classical POSIXfile permissions, since the 1.6 release MooseFS offers a simple, NFS-like, authentication/authorization.
Transparent "trash bin" — Deleted files are retained for a configurable period of time.
Data tiering / storage classes — Possibility to "label" servers, create label definitions called "Storage Classes" and decide, on which types of servers the data is stored