README.txt 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. Lustre Parallel Filesystem Client
  2. =================================
  3. The Lustre file system is an open-source, parallel file system
  4. that supports many requirements of leadership class HPC simulation
  5. environments.
  6. Born from from a research project at Carnegie Mellon University,
  7. the Lustre file system is a widely-used option in HPC.
  8. The Lustre file system provides a POSIX compliant file system interface,
  9. can scale to thousands of clients, petabytes of storage and
  10. hundreds of gigabytes per second of I/O bandwidth.
  11. Unlike shared disk storage cluster filesystems (e.g. OCFS2, GFS, GPFS),
  12. Lustre has independent Metadata and Data servers that clients can access
  13. in parallel to maximize performance.
  14. In order to use Lustre client you will need to download the "lustre-client"
  15. package that contains the userspace tools from http://lustre.org/download/
  16. You will need to install and configure your Lustre servers separately.
  17. Mount Syntax
  18. ============
  19. After you installed the lustre-client tools including mount.lustre binary
  20. you can mount your Lustre filesystem with:
  21. mount -t lustre mgs:/fsname mnt
  22. where mgs is the host name or ip address of your Lustre MGS(management service)
  23. fsname is the name of the filesystem you would like to mount.
  24. Mount Options
  25. =============
  26. noflock
  27. Disable posix file locking (Applications trying to use
  28. the functionality will get ENOSYS)
  29. localflock
  30. Enable local flock support, using only client-local flock
  31. (faster, for applications that require flock but do not run
  32. on multiple nodes).
  33. flock
  34. Enable cluster-global posix file locking coherent across all
  35. client nodes.
  36. user_xattr, nouser_xattr
  37. Support "user." extended attributes (or not)
  38. user_fid2path, nouser_fid2path
  39. Enable FID to path translation by regular users (or not)
  40. checksum, nochecksum
  41. Verify data consistency on the wire and in memory as it passes
  42. between the layers (or not).
  43. lruresize, nolruresize
  44. Allow lock LRU to be controlled by memory pressure on the server
  45. (or only 100 (default, controlled by lru_size proc parameter) locks
  46. per CPU per server on this client).
  47. lazystatfs, nolazystatfs
  48. Do not block in statfs() if some of the servers are down.
  49. 32bitapi
  50. Shrink inode numbers to fit into 32 bits. This is necessary
  51. if you plan to reexport Lustre filesystem from this client via
  52. NFSv4.
  53. verbose, noverbose
  54. Enable mount/umount console messages (or not)
  55. More Information
  56. ================
  57. You can get more information at the Lustre website: http://wiki.lustre.org/
  58. Source for the userspace tools and out-of-tree client and server code
  59. is available at: http://git.hpdd.intel.com/fs/lustre-release.git
  60. Latest binary packages:
  61. http://lustre.org/download/