The Google File System is a scalable distributed file system designed to meet the rapidly growing data storage needs of Google. It provides fault tolerance on inexpensive commodity hardware and high aggregate performance to large numbers of clients. The key design drivers were the assumptions that components often fail, files are huge, writes are append-only, and concurrent appending is important. The system has a single master that manages metadata and assigns chunks to chunkservers, which store replicated file chunks. Clients communicate directly with chunkservers to read and write large, sequentially accessed files in chunks of 64MB.
Related topics: