up vote 2 down vote favorite
share [g+] share [fb]

I read that file locking on network files isn't very reliable.

I'm using those LockFile/LockFileEx/UnlockFile win32-api functions for range-locks. Does anyone have some experience of using those functions on files living on a network-share?

link|improve this question

The cautionary notes in the sqlite FAQ you referenced pertain to filesystems mounted via NFS -- an uncommon situation in a Windows environment. The win32 locking functions should work fine if the share is mounted using the SMB protocol (standard Windows file sharing, or a Unix host sharing files via Samba). – Jim Lewis Aug 10 '09 at 18:09
feedback

1 Answer

up vote 2 down vote accepted

Win32 file locking mechanisms are reliable IF they're done to a remote CIFS share. There have been many flat file databases that work just quite reliably using these mechanisms for decades.

They're not reliable if they're done on a remote NFS share (as Jim Lewis mentioned).

link|improve this answer
Actually, he says that NFS might not work because most of the fcntl implementations (on linux!) are broken for this network file system. But he also mentions that "People who have a lot of experience with Windows tell me that file locking of network files is very buggy and is not dependable." Are you sure he also means NFS with network files? – Thomas Danecker Aug 12 '09 at 8:37
The file locking mechanism in *nix is advisory not mandatory (as it is on Windows). As such network filesystems like NFS which expose *nix's locking mechanism aren't really reliable. This is among the reasons that UW IMAP doesn't support locating the users mailbox store on an NFS share. – Larry Osterman Aug 12 '09 at 22:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.