PNFS block server setup

From Linux NFS

(Difference between revisions)
Jump to: navigation, search
Line 2: Line 2:
* a kernel version at least 4.0 built with CONFIG_NFSD_PNFS,
* a kernel version at least 4.0 built with CONFIG_NFSD_PNFS,
-
* similarly recent nfs-utils (exact version?) on the server,
+
* similarly recent nfs-utils on the server (not officially released as of this writing; need at least c08f1382e5609bc686c3df95ff1e267804b37a61 from [http://git.linux-nfs.org/?p=steved/nfs-utils.git]), and
* a shared block devices that the server and clients can all access.
* a shared block devices that the server and clients can all access.

Revision as of 21:46, 7 April 2015

To use the linux block-based pNFS server, you need:

  • a kernel version at least 4.0 built with CONFIG_NFSD_PNFS,
  • similarly recent nfs-utils on the server (not officially released as of this writing; need at least c08f1382e5609bc686c3df95ff1e267804b37a61 from [1]), and
  • a shared block devices that the server and clients can all access.

Format the block device with an xfs filesystem, export it with the "pnfs" export option, and start the nfs server.

On the client: start the blkmap daemon. (On fedora: systemctl enable nfs-blkmap and systemctl start nfs-blkmap). Then mount with nfs-version at least 4.1.

The client will then perform reads and writes to regular files by reading or writing directly to the block device rather than by sending NFS reads and writes to the server. Things are probably working if you can see LAYOUTGET calls in /proc/self/mountstats.

WARNINGS:

  • The client figures out which block device to write to by looking at the content of the block device. It may choose incorrectly, for example, if the client also has access to snapshots of the same filesystem. THIS MAY CORRUPT YOUR DATA.
  • The server needs to be able to revoke client's direct access to data in cases where, for example, multiple clients need simultaneous access. If the client is unresponsive to requests to do this by normal NFS callbacks, the server must be able to forcibly fence the client's access. To make this work you must provide a /sbin/nfsd-recall-failed script which knows how to fence clients. See Documentation/filesystems/nfs/pnfs-block-server.txt for details. Failure to do this may corrupt your data.
Personal tools