Hi Folks,
I'm trying to figure out a way to generate large numbers of NFS getattr calls. I first tried using a simple ls -laR script, but that primarily generated access calls. Does anyone have any ideas?
--- You must not fight too often with one enemy, or you will teach him all your tricks of war.
I'm trying to figure out a way to generate large numbers of NFS getattr calls. I first tried using a simple ls -laR script, but that primarily generated access calls. Does anyone have any ideas?
Code:
sh -c "for i in {1..50}; do ls -lasiR ${NFS_MNTPNT_DIR}; sleep 2 done"
--- You must not fight too often with one enemy, or you will teach him all your tricks of war.