Yes 1/200 = 5/1000 = 0.005. It appears we are in agreement on how math works. In any case, I think a lot of this time is spent in the SSH connection anyway, so I took your earlier advice:
I spent yesterday afternoon writing a very simple client/server program: GitHub - amfournda/manualfiletester. The server listens on a port and waits for a client to connect. When a client connects it writes a short random string to a file, then sends that random string to the client which opens the file and prints both the string it received over the network and the contents of the file. In my case this file is on the same shared directory elasticsearch is trying to use for snapshots. It works perfectly:
Server:
root@facility-es02:~/filetest# ./server
Took 0 seconds and 23576 microseconds to write to manualtest: SBQm91FtIkP3Rk4g
Took 0 seconds and 377 microseconds to sent string to client: SBQm91FtIkP3Rk4g
Took 0 seconds and 31993 microseconds to write to manualtest: ktqh4Etf3hMW2Mt2
Took 0 seconds and 66 microseconds to sent string to client: ktqh4Etf3hMW2Mt2
Took 0 seconds and 29797 microseconds to write to manualtest: pGDbmlBeWNqsV28b
Took 0 seconds and 79 microseconds to sent string to client: pGDbmlBeWNqsV28b
Client:
root@facility-es01:~/filetest# ./client
Took 0 seconds and 25376 micros to read string from server: SBQm91FtIkP3Rk4g
Took 0 seconds and 2215 micros to see file contains SBQm91FtIkP3Rk4g
root@facility-es01:~/filetest# ./client
Took 0 seconds and 32622 micros to read string from server: ktqh4Etf3hMW2Mt2
Took 0 seconds and 1651 micros to see file contains ktqh4Etf3hMW2Mt2
root@facility-es01:~/filetest# ./client
Took 0 seconds and 30944 micros to read string from server: pGDbmlBeWNqsV28b
Took 0 seconds and 1539 micros to see file contains pGDbmlBeWNqsV28b
As you can see, the state of the disk is always consistent with what gets sent over the network no matter how many times I run this. So long as the client calls close() on a file before another client tries to access that file it will exist and contain the expected information every single time. Will you agree that this proves my NFS server is guaranteeing close-to-open consistency for files, which is all NFS should be expected to do?