Return-Path: Delivered-To: apmail-couchdb-dev-archive@www.apache.org Received: (qmail 39853 invoked from network); 21 Mar 2010 12:57:51 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 21 Mar 2010 12:57:51 -0000 Received: (qmail 81914 invoked by uid 500); 21 Mar 2010 12:57:50 -0000 Delivered-To: apmail-couchdb-dev-archive@couchdb.apache.org Received: (qmail 81868 invoked by uid 500); 21 Mar 2010 12:57:50 -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 81860 invoked by uid 99); 21 Mar 2010 12:57:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Mar 2010 12:57:50 +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.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Mar 2010 12:57:48 +0000 Received: from brutus.apache.org (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 38E5F234C1EE for ; Sun, 21 Mar 2010 12:57:27 +0000 (UTC) Message-ID: <999143262.393111269176247232.JavaMail.jira@brutus.apache.org> Date: Sun, 21 Mar 2010 12:57:27 +0000 (UTC) From: "Filipe Manana (JIRA)" To: dev@couchdb.apache.org Subject: [jira] Commented: (COUCHDB-679) Pull replication no longer works when a source doc has a large attachment In-Reply-To: <1394900866.35821267622433213.JavaMail.jira@brutus.apache.org> 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-679?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12847921#action_12847921 ] Filipe Manana commented on COUCHDB-679: --------------------------------------- @Jan news about the test? > Pull replication no longer works when a source doc has a large attachment > ------------------------------------------------------------------------- > > Key: COUCHDB-679 > URL: https://issues.apache.org/jira/browse/COUCHDB-679 > Project: CouchDB > Issue Type: Bug > Components: Replication > Environment: trunk and 0.11 > Reporter: Filipe Manana > Priority: Blocker > Fix For: 0.11 > > Attachments: CouchDB-679-etap_test-trunk-2.patch, CouchDB-679-etap_test-trunk-3.patch, CouchDB-679-etap_test-trunk.patch > > > After rev r916868 (fix for CouchDB-597), doing a pull replication of a doc that has a large attachment no longer works. > The problem is in couch_rep_att.erl: > convert_stub(#att{data=stub, name=Name} = Attachment, > {#http_db{} = Db, Id, Rev}) -> > {Pos, [RevId|_]} = Rev, > Request = Db#http_db{ > resource = lists:flatten([couch_util:url_encode(Id), "/", > couch_util:url_encode(Name)]), > qs = [{rev, couch_doc:rev_to_str({Pos,RevId})}] > }, > Ref = make_ref(), > RcvFun = fun() -> > Bin = attachment_receiver(Ref, Request), > cleanup(), > Bin > end, > Attachment#att{data=RcvFun}. > The cleanup/0 function can not be called there, since when the attachment is received in multiple chunks, after receiving the first chunk the subsequent ones are silently discarded by cleanup/0: > cleanup() -> > receive > {ibrowse_async_response, _, _} -> > %% TODO maybe log, didn't expect to have data here > cleanup(); > {ibrowse_async_response_end, _} -> > cleanup(); > {ibrowse_async_headers, _, _, _} -> > cleanup() > after 0 -> > erase(), > ok > end. > If you look into couch_db.erl, you'll see that the attachment receiver function maybe called multiple times: > flush_att(Fd, #att{data=Fun,att_len=AttLen}=Att) when is_function(Fun) -> > with_stream(Fd, Att, fun(OutputStream) -> > write_streamed_attachment(OutputStream, Fun, AttLen) > end). > write_streamed_attachment(_Stream, _F, 0) -> > ok; > write_streamed_attachment(Stream, F, LenLeft) -> > Bin = F(), > ok = couch_stream:write(Stream, Bin), > write_streamed_attachment(Stream, F, LenLeft - size(Bin)). > This is serious :( > However, removing that call to cleanup/0 may cause the return of CouchDB-597, therefore I don't supply a patch here. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.