Return-Path: Delivered-To: apmail-couchdb-user-archive@www.apache.org Received: (qmail 23342 invoked from network); 19 May 2010 20:30:32 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 19 May 2010 20:30:32 -0000 Received: (qmail 15069 invoked by uid 500); 19 May 2010 20:30:30 -0000 Delivered-To: apmail-couchdb-user-archive@couchdb.apache.org Received: (qmail 15028 invoked by uid 500); 19 May 2010 20:30:30 -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 15020 invoked by uid 99); 19 May 2010 20:30:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 May 2010 20:30:30 +0000 X-ASF-Spam-Status: No, hits=1.0 required=10.0 tests=AWL,FREEMAIL_FROM,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of msddsm@gmail.com designates 209.85.214.180 as permitted sender) Received: from [209.85.214.180] (HELO mail-iw0-f180.google.com) (209.85.214.180) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 May 2010 20:30:22 +0000 Received: by iwn8 with SMTP id 8so3341422iwn.11 for ; Wed, 19 May 2010 13:29:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:subject:to :x-priority:message-id:mime-version:content-type :content-transfer-encoding:x-mailer; bh=2aDn/iYyCgArams3nq3P54RjALy6dYIaN3SGwxxcRl0=; b=RrvH1Mkyn0+F/ClfW4N1bOkB9HG2vAi1dr2zIQJS5dcrwR31KMpdmgCG0V5YG0xUhl 5Nm+EVt5AKxju81nX+RLMOM5oqOjVCvAKNcSqt3yT+XL/Z453mkwgNUH0QKc1kr2C8qL NQQEtFTT88L1QZzHYJgJW401To8vNTnnoLiEw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:subject:to:x-priority:message-id:mime-version :content-type:content-transfer-encoding:x-mailer; b=fAnuy75nX/+VNo7iKcMcKvZ0tWBgEuOHhOWqrur3YBVxbTLI4geT4QyUNKw8DzfyJA EnVAn07ZmqKgcXAcv9yLxb/D0jRaYCmcPLtZMwYRj2HBd+cXtNJ1USToBTKdOWx8SLO9 zN5yt0MvdW+LoxA4FElXNKrPmMYs3C3TlXz1c= Received: by 10.231.158.132 with SMTP id f4mr4234390ibx.52.1274300996851; Wed, 19 May 2010 13:29:56 -0700 (PDT) Received: from mocha.local ([65.219.237.243]) by mx.google.com with ESMTPS id d9sm576366ibl.10.2010.05.19.13.29.54 (version=SSLv3 cipher=RC4-MD5); Wed, 19 May 2010 13:29:56 -0700 (PDT) Date: Wed, 19 May 2010 16:29:53 -0400 From: Matthew Sinclair-Day Subject: process error, exist status 137 To: user@couchdb.apache.org X-Priority: 3 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable X-Mailer: Mailsmith 2.2.5 I've built couch 0.11.0 on Solaris 10 and am having problems=20 with js views. When the view is run, the following error=20 message is repeatedly written to the couch log until couch is shutdown: [Wed, 19 May 2010 19:45:54 GMT] [error] [<0.131.0>] OS Process=20 Error <0.22346.0> :: {os_process_error,{exit_status,137}} The view function is this: function(doc) { emit(1, doc); } but any function seems to trigger the problem., including ones=20 from the Test Suite. A reduce function is not defined. There=20 are three documents in the database, including two design docs. =20 I have the erlang view server configured, and erlang views work fine. Periodically, the following message is reported: [Wed, 19 May 2010 19:43:19 GMT] [error] [<0.2592.7>] ** Generic=20 server <0.2592.7> terminating ** Last message in was {prompt,[<<"reset">>,{[{<<"reduce_limit">>,true}]}]} ** When Server state =3D=3D=20 {os_proc,"/opt/MIIpkgs/couchdb-0.11.0/bin/couchjs /opt/MIIpkgs/couchdb-0.11= .0/share/couchdb/server/main.js", #Port<0.155313>, #Fun, #Fun,5000} ** Reason for termination =3D=3D ** {badarg,[{erlang,port_command, [#Port<0.155313>, [91, [34,<<"reset">>,34], 44, [123,[34,<<"reduce_limit">>,34],58,<<"true">>,125], 93,10]]}, {couch_os_process,writeline,2}, {couch_os_process,writejson,2}, {couch_os_process,handle_call,3}, {gen_server,handle_msg,5}, {proc_lib,init_p_do_apply,3}]} Any help would be appreciated. Matt