Return-Path: Delivered-To: apmail-couchdb-dev-archive@www.apache.org Received: (qmail 22868 invoked from network); 27 Aug 2009 13:24:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 27 Aug 2009 13:24:24 -0000 Received: (qmail 12004 invoked by uid 500); 27 Aug 2009 13:24:23 -0000 Delivered-To: apmail-couchdb-dev-archive@couchdb.apache.org Received: (qmail 11919 invoked by uid 500); 27 Aug 2009 13:24:23 -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 11909 invoked by uid 99); 27 Aug 2009 13:24:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Aug 2009 13:24:23 +0000 X-ASF-Spam-Status: No, hits=-1998.5 required=10.0 tests=ALL_TRUSTED,WEIRD_PORT 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; Thu, 27 Aug 2009 13:24:20 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 58F24234C04C for ; Thu, 27 Aug 2009 06:23:59 -0700 (PDT) Message-ID: <549182384.1251379439363.JavaMail.jira@brutus> Date: Thu, 27 Aug 2009 06:23:59 -0700 (PDT) From: "Robert Newson (JIRA)" To: dev@couchdb.apache.org Subject: [jira] Commented: (COUCHDB-487) Pause write requests to allow compaction to complete In-Reply-To: <620135915.1251363059270.JavaMail.jira@brutus> 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-487?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12748365#action_12748365 ] Robert Newson commented on COUCHDB-487: --------------------------------------- That's a fair concern. My preferred fix is to use multiple files that can be compacted/obsoleted separately, which makes it non-blocking even under heavy nd continuous writing. I was aware of the multi-pass nature of compaction when I wrote the patch, which is why it doesn't kick in at all unless it tries and fails to switch over to the compact file. I can modify the patch to only make write_available=false if the seq delta is below a configurable threshold, which is a nice change anyway, and the default can be 0, which is today's behavior. > Pause write requests to allow compaction to complete > ---------------------------------------------------- > > Key: COUCHDB-487 > URL: https://issues.apache.org/jira/browse/COUCHDB-487 > Project: CouchDB > Issue Type: Improvement > Components: Database Core > Reporter: Robert Newson > Attachments: block_writes_after_end_of_compaction.patch > > > Continuous writes will currently indefinitely prevent the compaction process from flipping over to the .compact file. > Here's a small patch that adds a new db flag called 'write_available' which becomes false the first time compaction completes but fails to flip over because of concurrent writes. Subsequent calls to update_docs then sleep for 1/2 a second and throw retry. > I ran 'ab -p json -n 1000000 http://localhost:5984/db1' in one window. Without this patch, I get a long sequence of; > [info] [<0.64.0>] Compaction file still behind main file (update seq=1848. compact update seq=1845). Retrying. > and compaction never completes. > With the patch, I get this; > [info] [<0.369.0>] 127.0.0.1 - - 'POST' /db1 201 > [info] [<0.65.0>] Compaction file still behind main file (update seq=2140. compact update seq=2092). Retrying. > [info] [<0.65.0>] Blocking writes to complete compaction. > [info] [<0.65.0>] Compaction for db "db1" completed. > [info] [<0.370.0>] 127.0.0.1 - - 'POST' /db1 201 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.