Return-Path: Delivered-To: apmail-couchdb-user-archive@www.apache.org Received: (qmail 73817 invoked from network); 16 Sep 2010 13:21:45 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 16 Sep 2010 13:21:45 -0000 Received: (qmail 45602 invoked by uid 500); 16 Sep 2010 13:21:43 -0000 Delivered-To: apmail-couchdb-user-archive@couchdb.apache.org Received: (qmail 45505 invoked by uid 500); 16 Sep 2010 13:21:40 -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 45497 invoked by uid 99); 16 Sep 2010 13:21:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Sep 2010 13:21:39 +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 stephenp@agrussell.com designates 204.251.33.236 as permitted sender) Received: from [204.251.33.236] (HELO bifrost.agrussell.com) (204.251.33.236) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Sep 2010 13:21:30 +0000 Received: from [192.168.16.106] (mccul.agrussell.com [204.251.33.100]) by bifrost.agrussell.com (8.14.4/8.14.4) with ESMTP id o8GDL2fY004957 for ; Thu, 16 Sep 2010 08:21:07 -0500 (CDT) (envelope-from stephenp@agrussell.com) Message-Id: <3E97D8CA-2E19-44B1-8454-7A213F040622@agrussell.com> From: Stephen Prater To: user@couchdb.apache.org In-Reply-To: Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v936) Subject: Re: Is it possible to do another round of map-reduce on a view result? Date: Thu, 16 Sep 2010 08:21:00 -0500 References: X-Mailer: Apple Mail (2.936) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on bifrost.agrussell.com X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, score=-101.9 required=6.0 tests=BAYES_00,T_RP_MATCHES_RCVD, USER_IN_WHITELIST autolearn=ham version=3.3.1 Not with an out-of-the-box version. I think the recommended method is to do exactly what you're doing. On Sep 15, 2010, at 1:35 PM, sleepy wrote: > Hi, > > I'm doing some statistic with map-reduce view, but need to sort the > result > by the reduced result. > I find it's difficult to achieve without copy the result to another > database > and create a view again by emitting that value as key. > > It caused the data expanded and the copying process is a > time consuming serial process too. > > I'm wondering is there any way to do another round of map-reduce on > a view > result? > > sleepnova