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 0B093DB06 for ; Wed, 15 Aug 2012 13:32:36 +0000 (UTC) Received: (qmail 362 invoked by uid 500); 15 Aug 2012 13:32:34 -0000 Delivered-To: apmail-couchdb-user-archive@couchdb.apache.org Received: (qmail 336 invoked by uid 500); 15 Aug 2012 13:32:34 -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 327 invoked by uid 99); 15 Aug 2012 13:32:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Aug 2012 13:32:34 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=FSL_RCVD_USER,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of will.heger@gmail.com designates 209.85.216.180 as permitted sender) Received: from [209.85.216.180] (HELO mail-qc0-f180.google.com) (209.85.216.180) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Aug 2012 13:32:26 +0000 Received: by qcmv28 with SMTP id v28so1252518qcm.11 for ; Wed, 15 Aug 2012 06:32:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=uKMqvp/tJuN1NW+kX7I5u+5CBRQItudxdgfQQipcA6c=; b=jo/UGxD5s3sw3ZAs6ujuu6cVuP1wI9I+1te3RuDlmyxKgYwgSRYqvbdVvE9csSFmEQ KtXKZV1omH9NM6Q/5BykCb7lUGPYdqqBx5601s6M945OsBxySkBqVDJgC23OTSGscCXd w1a+YtW/fO4VQRxLZIflsmDDmIoivPjIVkW2TrLR77mqEHbp8fnFnNavnrxOH89RlCns VkHVnQAL1CzYHdzZtRHLSUGqkUdNkyBcUSW1eJzGvc1VIK2bjg4oh3SbI8+QX4SdXu0w yxQbhyV2jHTCS72cvxAFhBWBjPyi9Aiw4ob2pzsPNut0IsnZNfKdicr/lVR/SatoxGwp swPQ== MIME-Version: 1.0 Received: by 10.60.20.99 with SMTP id m3mr1684219oee.124.1345037526115; Wed, 15 Aug 2012 06:32:06 -0700 (PDT) Received: by 10.76.96.174 with HTTP; Wed, 15 Aug 2012 06:32:06 -0700 (PDT) In-Reply-To: References: Date: Wed, 15 Aug 2012 09:32:06 -0400 Message-ID: Subject: JavaScript 1.8.5 and Upgrades From: Will Heger To: user@couchdb.apache.org Content-Type: text/plain; charset=ISO-8859-1 After pushing some UTC Date() containing reduce code to a server, I discovered that the server was using 1.8.0 SpiderMonkey rather than 1.8.5, balls! So, my impression from the docs is that CouchDB needs to be compiled with a JavaScript engine, there is no swapping up to 1.8.5 from 1.8.0 (but please correct this if I'm wrong, I'd much rather swap the engine than rebuild a running couchdb). So here's my question: What is the a typical or best practice for performing an upgrade to CouchDb? Luckily, the server isn't a 24/7 instance, so I have some time to take it down. But is it: 0. doubtful, but is there a way to ugrade the SpiderMonkey in situ? 1. Is there a upgrade process or 'upgrader' in couchdb somewhere? 2. If not, do I backup replicate, stop, and build, and "make install" overtop? Or... 3. Is it option 2, but I need to eradicate the existing installation, and if so, how does one eradicate completely couchdb (one installed from source, IIRC)? Apologies in advance if these are answered through Googling, but I didn't find a succinct explanation. And thanks in advance for any assistance. Best regards, -Will