Return-Path: Delivered-To: apmail-couchdb-dev-archive@www.apache.org Received: (qmail 67119 invoked from network); 5 Mar 2010 08:35:06 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 5 Mar 2010 08:35:06 -0000 Received: (qmail 53997 invoked by uid 500); 5 Mar 2010 08:34:52 -0000 Delivered-To: apmail-couchdb-dev-archive@couchdb.apache.org Received: (qmail 53913 invoked by uid 500); 5 Mar 2010 08:34: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 53804 invoked by uid 99); 5 Mar 2010 08:34:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Mar 2010 08:34:48 +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; Fri, 05 Mar 2010 08:34:47 +0000 Received: from brutus.apache.org (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 5DDFF234C4CC for ; Fri, 5 Mar 2010 08:34:27 +0000 (UTC) Message-ID: <1855985941.91471267778067383.JavaMail.jira@brutus.apache.org> Date: Fri, 5 Mar 2010 08:34:27 +0000 (UTC) From: "Filipe Manana (JIRA)" To: dev@couchdb.apache.org Subject: [jira] Updated: (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 [ https://issues.apache.org/jira/browse/COUCHDB-679?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Filipe Manana updated COUCHDB-679: ---------------------------------- Attachment: CouchDB-679-etap_test-trunk-2.patch A slightly faster version. > 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.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.