From dev-return-12431-apmail-couchdb-dev-archive=couchdb.apache.org@couchdb.apache.org Sat Oct 09 19:53:34 2010 Return-Path: Delivered-To: apmail-couchdb-dev-archive@www.apache.org Received: (qmail 96923 invoked from network); 9 Oct 2010 19:53:34 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 9 Oct 2010 19:53:34 -0000 Received: (qmail 43432 invoked by uid 500); 9 Oct 2010 19:53:28 -0000 Delivered-To: apmail-couchdb-dev-archive@couchdb.apache.org Received: (qmail 43382 invoked by uid 500); 9 Oct 2010 19:53:28 -0000 Mailing-List: contact dev-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list dev@couchdb.apache.org Received: (qmail 43345 invoked by uid 99); 9 Oct 2010 19:53:27 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Oct 2010 19:53:27 +0000 X-ASF-Spam-Status: No, hits=-1996.4 required=10.0 tests=ALL_TRUSTED,FS_REPLICA X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Oct 2010 19:53:24 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o99Jr3cV018083 for ; Sat, 9 Oct 2010 19:53:03 GMT Message-ID: <7437506.61221286653983490.JavaMail.jira@thor> Date: Sat, 9 Oct 2010 15:53:03 -0400 (EDT) From: "Paul Joseph Davis (JIRA)" To: dev@couchdb.apache.org Subject: [jira] Updated: (COUCHDB-885) Attachments introduce conflicts after replication. In-Reply-To: <12408044.142171284313955102.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/COUCHDB-885?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Paul Joseph Davis updated COUCHDB-885: -------------------------------------- Skill Level: Committers Level (Medium to Hard) > Attachments introduce conflicts after replication. > -------------------------------------------------- > > Key: COUCHDB-885 > URL: https://issues.apache.org/jira/browse/COUCHDB-885 > Project: CouchDB > Issue Type: Bug > Components: Database Core > Affects Versions: 1.0.1 > Environment: Mac OSX, Windows XP, Windows 7 > Reporter: Nikolai Teofilov > Fix For: 0.11 > > > Step to reproduce the bug: > 1. Make database "test" on a remote couchdb server that reside on a different machine! > 2. Create new document: "http://remote-server:5984/test/doc" > 3. Create database "replica" on the local couchdb server. > 4. Trigger pull replication http://remote-server:5984/test -> http://localhost:5984/replica > 5. Attach a file to the replicated document on the local couchdb server. > 6. Trigger push replication http://localhost:5984/replica -> http://remote-server:5984/test > The document in the test database shows one conflict. If instead attachment the document is updated with a new field after the replication no conflict. > The same sequence shows no conflicts on CouchDB 0.11. > ************ test.sh **************** > #!/usr/bin/env bash > LOCAL="http://localhost:5984" > REMOTE="http://koleto.couchone.com" > echo "=====================================================" > echo "This sequence create a conflict after the replication" > echo "=====================================================" > echo "Cleanup" > curl --silent -X DELETE $LOCAL/replica > curl --silent -X DELETE $REMOTE/test > echo "Create database:" $REMOTE/test > curl --silent -X PUT $REMOTE/test > echo "Create empty document:" > curl --silent -d '{}' -X PUT $REMOTE/test/doc > echo "Create local databse:" $LOCAL/replica > curl --silent -X PUT $LOCAL/replica > echo "Pull replication:" REMOTE/test "->" $LOCAL/replica > curl --silent -X POST -d "{\"source\":\"$REMOTE/test\",\"target\":\"$LOCAL/replica\"}" -H 'Content-Type: application/json' $LOCAL/_replicate > echo "Put an attachment to the document:" > echo "foobar!" | curl --silent --upload-file - -X PUT "$LOCAL/replica/doc/foo.txt?rev=1-967a00dff5e02add41819138abb3284d" > echo "Push replication:" $LOCAL/replica "->" $REMOTE/test > curl --silent -X POST -d "{\"source\":\"$LOCAL/replica\",\"target\":\"$REMOTE/test\"}" -H 'Content-Type: application/json' $LOCAL/_replicate > echo '############## Get one conflic #####################' > curl --silent -X GET $REMOTE/test/doc?conflicts=true > echo "=====================================================" > echo "The same sequence with adding a field to the document" > echo "=====================================================" > echo "Cleanup" > curl --silent -X DELETE $LOCAL/replica > curl --silent -X DELETE $REMOTE/test > echo "Create database:" $REMOTE/test > curl --silent -X PUT $REMOTE/test > echo "Create empty document:" > curl --silent -d '{}' -X PUT $REMOTE/test/doc > echo "Create local databse:" $LOCAL/replica > curl --silent -X PUT $LOCAL/replica > echo "Pull replication:" REMOTE/test "->" $LOCAL/replica > curl --silent -X POST -d "{\"source\":\"$REMOTE/test\",\"target\":\"$LOCAL/replica\"}" -H 'Content-Type: application/json' $LOCAL/_replicate > echo "Adding a new field:" > curl --silent -d '{"foo":"bar" , "_rev" : "1-967a00dff5e02add41819138abb3284d" }' -X PUT $LOCAL/replica/doc?rev=1-967a00dff5e02add41819138abb3284d > echo "Push replication:" $LOCAL/replica "->" $REMOTE/test > curl --silent -X POST -d "{\"source\":\"$LOCAL/replica\",\"target\":\"$REMOTE/test\"}" -H 'Content-Type: application/json' $LOCAL/_replicate > echo '###### No conflicts after the replication ########' > curl --silent -X GET $REMOTE/test/doc?conflicts=true > -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.