Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fabiand/pnfs-test
https://github.com/fabiand/pnfs-test
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fabiand/pnfs-test
- Owner: fabiand
- Created: 2024-03-04T13:41:15.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-08T12:56:23.000Z (10 months ago)
- Last Synced: 2024-03-08T13:54:00.197Z (10 months ago)
- Language: Shell
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
> [!WARNING]
> Running WITH_CREATE_LUN might destroy dataOnly run against a fresh Fedora 39 VM.
Run:
$ WITH_CREATE_LUN=true bash test.sh
…
#
#
rw,insecure
#
#
…
+ dd if=/dev/zero of=/var/tmp/pnfs-client/data bs=1G count=1
1+0 records in
1+0 records out
1073741824 bytes (1.1 GB, 1.0 GiB) copied, 6.63653 s, 162 MB/s
…
+ grep -E 'layout|write'
nfs v4 client layoutcommit: 11239
nfs v4 client layoutget: 449
nfs v4 client layoutreturn: 8
nfs v4 client write: 24975
nfs v4 servop layoutcommit: 11238
nfs v4 servop layoutget: 444
nfs v4 servop layoutreturn: 55
nfs v4 servop write: 24975
…
#
#
pnfs,rw,insecure
#
#
…
+ dd if=/dev/zero of=/var/tmp/pnfs-client/data bs=1G count=1
1+0 records in
1+0 records out
1073741824 bytes (1.1 GB, 1.0 GiB) copied, 4.41001 s, 243 MB/s
…
+ grep -E 'layout|write'
nfs v4 client layoutcommit: 11247
nfs v4 client layoutget: 451
nfs v4 client layoutreturn: 8
nfs v4 client write: 24975
nfs v4 servop layoutcommit: 11246
nfs v4 servop layoutget: 446
nfs v4 servop layoutreturn: 56
nfs v4 servop write: 24975
…
$Monitor
watch --differences "nfsstat --server | egrep --after-context=1 read\|write\|layout"