Our application uses embedded Solr instance for search. The data directory is located on NFS and I cannot change that. The usage of Solr is very simple, there's a single thread that periodically updates index and there are several reader threads - these all are inside one java process. No other Solr interaction takes place.
With default "solrconfig.xml" I sometimes run into "java.nio.channels.OverlappingFileLockException". As far as I understand the reason is actually "SimpleFSLockFactory" not working correctly with NFS.
Questions:
Given the application scenario described above (no concurrent index modifications), shouldn't NoLockFactory be enough? Are there any drawbacks in using NoLockFactory? If I setup NoLockFactory I get a number of entries in error log saying that "CONFIGURATION WARNING: locks are disabled". Why does that message go into error log? Is that really considered an error case and why?
Maybe there's a better solution than using "NoLockFactory"?
Not sure this is related to NFS, but sometimes (quiet rare) my index gets corrupted and I get lots of "java.io.FileNotFoundException: _i.fdx" while trying to update an index. There's no way out of this other than manually delete the whole index directory and start from scratch. Why can this happen and is there any graceful way to automatically detect broken index and recover?
java.nio.channels.OverlappingFileLockExceptionseems to me more a native lock error, but I might be wrong. – javanna Mar 7 '12 at 12:29