Return-Path: Delivered-To: apmail-incubator-couchdb-user-archive@locus.apache.org Received: (qmail 41928 invoked from network); 20 Jun 2008 20:46:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Jun 2008 20:46:09 -0000 Received: (qmail 20668 invoked by uid 500); 20 Jun 2008 20:46:10 -0000 Delivered-To: apmail-incubator-couchdb-user-archive@incubator.apache.org Received: (qmail 20635 invoked by uid 500); 20 Jun 2008 20:46:10 -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 20624 invoked by uid 99); 20 Jun 2008 20:46:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Jun 2008 13:46:10 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of brking@gmail.com designates 66.249.82.231 as permitted sender) Received: from [66.249.82.231] (HELO wx-out-0506.google.com) (66.249.82.231) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Jun 2008 20:45:21 +0000 Received: by wx-out-0506.google.com with SMTP id s13so551396wxc.21 for ; Fri, 20 Jun 2008 13:45:40 -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:content-transfer-encoding :content-disposition; bh=l6aWR+cjPP+/nFmYNtAA03uF+uhjh4p8xRYD4PlQGP0=; b=Z1EBgR6eBl7AVul2umjuM+pjtUbYCNuZnx5xEQA9hXqCTYMBWydBUE+9cJ5D/whg8T HI4x/cQYBTpAzWaQ4pNTraqupm8Vp/yKBRZk/FyhwcWZdrGPvsyLi7yobg6EbiOVHB2m Z+OECK5dJLX1Skl8LhTiAzzZHsqWWWJA3Bxqc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=Qk9Bj82VQhSyDJOiu0DRNmubLga+aMjGXaYtASET/AgzA3XVVryJXOSMrOEm5XTXPg T8M6PTUJcrldb8FkgbaEW2BeC90nNLgpLUocJHUc8Pm8nJbUZIYDAoed4Vs7NMwtk6LA bTss7/jvG4WrVkc6WeqAwdjPiHXXivv58w6A8= Received: by 10.70.8.12 with SMTP id 12mr4361134wxh.89.1213994739994; Fri, 20 Jun 2008 13:45:39 -0700 (PDT) Received: by 10.70.91.4 with HTTP; Fri, 20 Jun 2008 13:45:39 -0700 (PDT) Message-ID: <888cd9180806201345k423a4dc8j64a881f351bd60bd@mail.gmail.com> Date: Fri, 20 Jun 2008 16:45:39 -0400 From: "Brad King" To: couchdb-user@incubator.apache.org Subject: view index build time MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org I have about 350K documents in a database. typically around 5K each. I created and saved a view which simply looks at one field in the document. I called the view for the first time with a key that should only match one document, and its been awaiting a response for about 45 minutes now. { "sku": { "map": "function(doc) { emit(doc.entityobject.SKU, doc); }" } } Is this typical, or is there some optimizing to be done on either my view or the server? I'm also running on a VM so this may have some effects, but smaller databases seem to be performing pretty well. Insert times to set this up were actually really good I thought, at 4000 to 5000 documents per minute running from my laptop.