Return-Path: Delivered-To: apmail-incubator-couchdb-user-archive@locus.apache.org Received: (qmail 19222 invoked from network); 11 Sep 2008 02:26:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Sep 2008 02:26:01 -0000 Received: (qmail 73350 invoked by uid 500); 11 Sep 2008 02:25:57 -0000 Delivered-To: apmail-incubator-couchdb-user-archive@incubator.apache.org Received: (qmail 73319 invoked by uid 500); 11 Sep 2008 02:25:56 -0000 Mailing-List: contact couchdb-user-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: couchdb-user@incubator.apache.org Delivered-To: mailing list couchdb-user@incubator.apache.org Received: (qmail 73308 invoked by uid 99); 11 Sep 2008 02:25:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Sep 2008 19:25:56 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of william.kinney@gmail.com designates 209.85.128.190 as permitted sender) Received: from [209.85.128.190] (HELO fk-out-0910.google.com) (209.85.128.190) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Sep 2008 02:24:59 +0000 Received: by fk-out-0910.google.com with SMTP id 19so114104fkr.12 for ; Wed, 10 Sep 2008 19:25:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type; bh=jKd0zgh1QgraomXUsydv/Ok+rgoPYeogu6zX3kVOLUk=; b=fovD8xBc4aBU2z/zzgG0bELf4Z1hpG8s7OMg5WSD8R6h7dinKA6wwVX/JBHgyL7ryV +rMJRAH5dpFjLq/rMxFXkxpCHexpjP3pFu5Oo6II2HWa2twGLfBcLaCysBDk+kgy7wrx SCZGjzOU7ND70pT3gBq5T8Gy1JAenTMoAvG0U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=Wss8E90L7XVgk5AE9CdiwvHb2RR3K5y7T5MVUd7zWW19vZ2tZ5agNjL68dpvBpysA+ nND8QJj2EgLgYg6KalIFQChR5ybwfUERObXhilsmkM3ZmUbIL/JOj1i44i5otGY9fq4T Vw5s+WocoGu9ypv6/xcC3v0noJKpusF08AUXI= Received: by 10.181.30.10 with SMTP id h10mr1463648bkj.41.1221099930556; Wed, 10 Sep 2008 19:25:30 -0700 (PDT) Received: by 10.180.218.2 with HTTP; Wed, 10 Sep 2008 19:25:30 -0700 (PDT) Message-ID: <928bdd8e0809101925q1f5963ccsca8e0425a9b289eb@mail.gmail.com> Date: Wed, 10 Sep 2008 22:25:30 -0400 From: "william kinney" To: couchdb-user@incubator.apache.org Subject: view access keeps timing out MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_21979_3780626.1221099930544" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_21979_3780626.1221099930544 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, I recently inserted a lot of new documents (10,000) into a database, and accessing the view (which previously worked and was fine) keeps timing out: # time curl curl: (52) Empty reply from server real 79m35.706s user 0m0.007s sys 0m0.028s I couldn't find any details in the logs, however it's only set at info. would setting it to debug be any help? Has anyone else had any issues w/ accessing a view after inserting a lot of new documents? the view map function: function(doc) { if (doc.newsResultUrl == null) { emit(doc._id, doc); } else { emit(doc.newsResultUrl, doc); } } reduce function: function(keys, values) { return values; } accessing all documents isn't a problem. version 0.8.1, server is 2.6.22.14-72.fc6 SMP, Intel(R) Xeon(R) CPU X3210 @ 2.13GHz x 2 Thanks for the help, Will ------=_Part_21979_3780626.1221099930544--