[
https://issues.apache.org/jira/browse/COUCHDB-602?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12802213#action_12802213
]
Nils Breunese commented on COUCHDB-602:
---------------------------------------
I got this message from the hosting company:
----
when doing "Run All" in the test suite, the first test that fails is "compact"
the error log is attached.
from time to time I can see quie a few .nfs files in the couchdb datastore
directory:
find . | grep nfs
./.test_suite_db_design/.nfs00000000019000890039f45d
./.test_suite_db_design/.nfs00000000019000880039f45e
./.test_suite_db_design/.nfs000000000190008b0039f460
./.test_suite_db_design/.nfs000000000190008a0039f461
./.nfs00000000006800880039f45c
./.nfs000000000068008a0039f45f
----
I'll attach the error log.
> Cannot use NFS for storage
> --------------------------
>
> Key: COUCHDB-602
> URL: https://issues.apache.org/jira/browse/COUCHDB-602
> Project: CouchDB
> Issue Type: Bug
> Components: Test Suite
> Affects Versions: 0.10
> Reporter: Nils Breunese
> Attachments: error.gz
>
>
> Our hosting provider claims they cannot upgrade our CouchDB installation from
> version 0.9.1 to 0.10 as the test suite for 0.10 is failing.
> This is a translation from their report:
> ----
> CouchDB can't handle having its data directory on NFS.
> It seems CouchDB tries to do this:
> 1 mkdir test
> 2 start process X with fd under test/foo
> 3 do the work
> 4 rm test/foo
> 5 rmdir test
> 6 kill process X
> When test/ is on NFS:
> In step 4 an open file is being removed. NFS doesn't really support this
> and the workaround is that the client implementation does
> mv file .nfsXXXXXXX
> However, the 'rmdir test' in step 5 then cannot succeed anymore, since
> the directory is not empty. This eventually causes CouchDB to crash.
> In earlier versions of CouchDB the open/rm/rmdir/kill order may have
> been different, for instance open/rm/kill/rmdir.
> ----
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.