Return-Path: X-Original-To: apmail-couchdb-user-archive@www.apache.org Delivered-To: apmail-couchdb-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C0F3BD6A2 for ; Mon, 3 Dec 2012 06:59:52 +0000 (UTC) Received: (qmail 8449 invoked by uid 500); 3 Dec 2012 06:59:49 -0000 Delivered-To: apmail-couchdb-user-archive@couchdb.apache.org Received: (qmail 6518 invoked by uid 500); 3 Dec 2012 06:59:47 -0000 Mailing-List: contact user-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@couchdb.apache.org Delivered-To: mailing list user@couchdb.apache.org Received: (qmail 6250 invoked by uid 99); 3 Dec 2012 06:59:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Dec 2012 06:59:46 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [209.85.215.180] (HELO mail-ea0-f180.google.com) (209.85.215.180) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Dec 2012 06:59:38 +0000 Received: by mail-ea0-f180.google.com with SMTP id f13so977040eai.11 for ; Sun, 02 Dec 2012 22:59:16 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:content-type:content-transfer-encoding:subject:date:message-id :to:mime-version:x-mailer:x-gm-message-state; bh=U+SM+ZxWcHyAW5XJclWq6KWmCvcovaFAPQVAEVHkWas=; b=MvUIPDrrh3F+sehS4hqA/ZN2UnnCQH6m2uU0W9FRcGzWpBJHNT+zgio38Ub4ZtuOQ7 WBU+RysMM1SOkqzt6zwsXrNvBFHrgH5o7QodAV3M//9mUTTdWsF9pwjCZXFnsi6Oyo8b tjiuwFy++kQPLKS3nfNWtEmlvgfWB+tog5WMwHt6OP/uZsfsQmWaPoeM2Yma73Phxdlk 3nCeU1JocVX0wQtLS5t4seukfsCzcZ791GMnt8f5BfN9WOBgiUQs8oShe0N1K9myC/RC ImIMHBqscfQBEUBUsnOhuWTGp5NvYTQ3DGxLWo+tK2SrlNA9ztUqTO/jH24hsrEA5TsY 1v/Q== Received: by 10.14.2.196 with SMTP id 44mr33079125eef.25.1354517956608; Sun, 02 Dec 2012 22:59:16 -0800 (PST) Received: from postel.home (178-191-167-176.adsl.highway.telekom.at. [178.191.167.176]) by mx.google.com with ESMTPS id q44sm29492849eep.5.2012.12.02.22.59.14 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 02 Dec 2012 22:59:15 -0800 (PST) From: Nathan Vander Wilt Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Subject: "Target database out of sync. Try to increase max_dbs_open at the target's server." Date: Mon, 3 Dec 2012 07:59:16 +0100 Message-Id: To: user@couchdb.apache.org Mime-Version: 1.0 (Apple Message framework v1283) X-Mailer: Apple Mail (2.1283) X-Gm-Message-State: ALoCoQmYxlokl1XQvTCQVUOgHG4DClnSDMnh8Yj8xg9JAoOROkWJK0elvPiZkKQXzpU5rKRdZO7m X-Virus-Checked: Checked by ClamAV on apache.org I keep seeing this error in my logs, from a replication between two = database servers: [Sat, 17 Nov 2012 18:16:21 GMT] [error] [<0.22441.709>] Error in = replication `ec0cd75a82ec8f2089fae72e31b29aac+continuous+create_target` = (triggered by document `replicate-to-staging`): = {checkpoint_commit_failure,<<"Target database out of sync. Try to = increase max_dbs_open at the target's server.">>} Looking at the source code around that message, my understanding is that = this will be logged when the timestamps found in the checkpoint document = do not match what should have been written or=85something. (My Erlang-fu = has only atrophied since excitedly reading the Armstrong book several = years ago.) The odd thing is, the target database in this case should have plenty of = "max_dbs_open" headroom! I can't raise it further since the setting is = not on the Iris Couch whitelist, but the target system has only 31 = databases total (against the Iris Couch limit of 100). On the source = side, there are 83 databases that could be open, but that's not what = it's complaining about. Replication seems to recover fine, but the dumps are clogging my logs = and making it harder to track some other (real) continuous replication = issues I'm trying to resolve. Any suggestions of what its real complaint = is and how to resolve? thanks, -natevw=