wiki:rock/paper/PFS_HPC

Version 3 (modified by rock, 15 years ago) (diff)

--

Parallel File Systems: File Systems for HPC Clusters

1. 重點

  1. 作者將 Cluster FS 分為兩類:
    • DFS (Distributed File Systems)
      • ”parallel” as they utilize multiple data servers
    • PFS (Parallel File Systems)
      • use a single server, are not necessarily parallel, they can give the user ”parallel access” to a file system.
  1. DFS are network based (i.e. the actual storage hardware is not necessarily on the nodes) but it not necessarily parallel (i.e.there may not be multiple servers that are delivering the file system).
    • 作者先舉 NFS 來介紹:
      • NFS:
        • Primary file system for clusters, and is pretty much” plug and play” on most *nix systems.
        • It was the first popular file system that allowed distributed systems to share data.
      • NFSv3:
        • The most popular version of NFS. It was released around 1995 and
        • added several features including support for 64-bit file sizes and offsets (so it can handle files larger than 4GB), asynchronous write support, and TCP as a transport layer.
      • NFSv4:
        • Around 2003, NFSv4 was released with some improvements. In particular,
        • it added some speed improvements, strong security (with compatibility for multiple security protocols), andNFS became a stateful protocol.
      • NFS 的效能面:
        • The good news for NFS and NAS is that many codes don’t require lots of I/O for good performance. These codes will run very well using NFS as the storage protocol even for large runs (100+ nodes or several hundred cores). NFS provides adequate performance until the input and output files for these codes become extremely large, or if the code is run across a very large number of processors (in the thousands).
        • NFS still lacks the performance and scalability required by many large clusters, but that is about to change.
      • pNFS (NFSv4.1):
        • adding PFS capability to the NFS protocol. The goal is to improve performance and scalability while making the changes within a standard (recall that NFS is the only true shared file system standard).
        • this standard is designed to be used with file based, block based, and object based storage devices with an eye towards freeing customers from vendor lock-in.
        • pNFS Architecture, No image "pNFS_arch.png" attached to rock/paper/PFS_HPC
          • pNFS Sever 連接 Client 和 Storage ,當 Client 要存取檔案時先至 pNFS Server 查詢 Metadata 找到檔案的位置,再連接到存放檔案的 Sotrage
    • 作者第二個舉的是 Clustered NAS
      • Clustered NAS systems were developed to make NAS systems more scalable and to give them more performance
      • Uses several filer heads instead of a single one. The filer heads are then connected to storage.
      • 2 Arch:
        1. several file heads each have some storage assigned to them.
  1. the filer heads are really gateways from the clients to a parallel file system.
    • filer heads communicate with the client using NFS over the client network but access the parallel file system

on a private storage network.

  • This approach allows the ClusterNAS to be scaled quite large because you can just add more gateways– which

also increases aggregate performance because there are more NFS gateways.

  • Used by Isilon. And Panasas, IBM’s GPFS, and other parallel file systems when they are running in a NFS mode.


想法

  • 此編的論點屬於 survey 性質,可用於撰寫 DFS Paper 的文獻探討

Attachments (3)

Download all attachments as: .zip