Return-Path: Delivered-To: apmail-couchdb-user-archive@www.apache.org Received: (qmail 54688 invoked from network); 31 Jan 2010 07:47:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 31 Jan 2010 07:47:49 -0000 Received: (qmail 43633 invoked by uid 500); 31 Jan 2010 07:47:47 -0000 Delivered-To: apmail-couchdb-user-archive@couchdb.apache.org Received: (qmail 43549 invoked by uid 500); 31 Jan 2010 07:47:46 -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 43539 invoked by uid 99); 31 Jan 2010 07:47:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 31 Jan 2010 07:47:46 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of docmach@gmail.com designates 209.85.221.194 as permitted sender) Received: from [209.85.221.194] (HELO mail-qy0-f194.google.com) (209.85.221.194) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 31 Jan 2010 07:47:36 +0000 Received: by qyk32 with SMTP id 32so1520465qyk.12 for ; Sat, 30 Jan 2010 23:47:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:organization:to:subject :date:user-agent:references:in-reply-to:mime-version:message-id :content-type:content-transfer-encoding; bh=whgLKcGY89BK+8o8s8igh6d5YZdpBjXxCgbGLzsx5S4=; b=jwt/h/nZdP9A2yB1sNovfGKUH5IOQhx8B1xSB94mXtMLwkMPhmDsCHpPHJFd6dn4aT IcLdxGG0vcjEsrs0xwhj8hi2w8WREy5I3Vao1OuLgc6LxZw0+UTqGoRY1p3wUKEA57ox CMsNwAPRIsDsIXYv0sjYGfoOf5T8wvVjw/1oQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:organization:to:subject:date:user-agent:references:in-reply-to :mime-version:message-id:content-type:content-transfer-encoding; b=k7apudB3qAB8Me/YNTxT/wAIo7bMTqcLCb4NgAVD9GJYSdiEA9CD9z8/5T6o7rPnkp MFuEXk9kWR/sdmi1A/z3SiOHOB+mcw3xJRxI4twPazNiaimEmlokZU1cdvb9x5aJPMZh xK0JxCaALz5clzu22Hze/JcfKkvni/jSOBT1E= Received: by 10.224.42.148 with SMTP id s20mr1280348qae.281.1264924035888; Sat, 30 Jan 2010 23:47:15 -0800 (PST) Received: from machpad.localnet (h175.68.88.75.dynamic.ip.windstream.net [75.88.68.175]) by mx.google.com with ESMTPS id 23sm2814665qyk.7.2010.01.30.23.47.13 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 30 Jan 2010 23:47:13 -0800 (PST) From: Alan Mock Organization: alan.mock@gmail.com To: user@couchdb.apache.org Subject: Re: View Creation Failure Date: Sun, 31 Jan 2010 01:47:07 -0600 User-Agent: KMail/1.12.4 (Linux/2.6.32-ARCH; KDE/4.3.4; x86_64; ; ) References: <201001301551.24913.alan.mock@gmail.com> In-Reply-To: MIME-Version: 1.0 Message-Id: <201001310147.07308.alan.mock@gmail.com> Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org It turns out that there is something wrong with my CouchDB installation. I switched to using a different server and didn't run the test suite before I tried this. Almost all of the tests fail so I'll try to fix that before I look into this specific error any more. My view is just "function(doc) { emit(doc.path, doc.hash)}" and I'm using CouchDB 0.10.1 on OpenSolaris snv_111b. Thanks, Alan On Saturday 30 January 2010 17:17:35 Paul Davis wrote: > What version of couchdb? > > Also, what does your view look like? That error suggests that couchjs > took too long to map a view and triggered a timeout. > > Paul > > On Sat, Jan 30, 2010 at 4:51 PM, Alan Mock wrote: > > I have a database with about 170000 documents and I'm trying to create a > > view on. When I do so either by using curl or from CouchDB's web > > interface it fails with either > > > > {os_process_error,{exit_status,137}} > > > > or > > > > {timeout_value,[{couch_os_process,readline,2}, > > {couch_os_process,readjson,1}, > > {couch_os_process,handle_call,3}, > > {gen_server,handle_msg,5}, > > {proc_lib,init_p_do_apply,3}]} > > > > If I try to access the view again it starts over, so the view index > > creation never finishes. Is there some way to force the creation of the > > view index? > > > > Thanks, > > Alan >