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 B6EF3D2D4 for ; Fri, 26 Oct 2012 01:08:07 +0000 (UTC) Received: (qmail 17812 invoked by uid 500); 26 Oct 2012 01:08:06 -0000 Delivered-To: apmail-couchdb-user-archive@couchdb.apache.org Received: (qmail 17784 invoked by uid 500); 26 Oct 2012 01:08:06 -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 17774 invoked by uid 99); 26 Oct 2012 01:08:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Oct 2012 01:08:06 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=RCVD_IN_DNSWL_NONE,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [173.247.251.126] (HELO biz82.inmotionhosting.com) (173.247.251.126) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Oct 2012 01:07:58 +0000 Received: from [96.50.69.82] (port=45008 helo=preston.callenish.com) by biz82.inmotionhosting.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.77) (envelope-from ) id 1TRYOX-0005lJ-Pw for user@couchdb.apache.org; Thu, 25 Oct 2012 18:07:29 -0700 Message-ID: <5089E257.8030207@callenish.com> Date: Thu, 25 Oct 2012 18:07:35 -0700 From: Bruce Atherton User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:16.0) Gecko/20121011 Thunderbird/16.0.1 MIME-Version: 1.0 To: user@couchdb.apache.org Subject: Yet Another couchdb-lucene question Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - biz82.inmotionhosting.com X-AntiAbuse: Original Domain - couchdb.apache.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - callenish.com X-Source: X-Source-Args: X-Source-Dir: X-Virus-Checked: Checked by ClamAV on apache.org I've almost got couchdb-lucene to work, but I must be missing something because I'm not getting indexes to build. Here is the behaviour I am seeing: Hitting the URL http://localhost:5984/_fti/local/testdb/_design/lucene/by_type?q=test sends back: {"reason":"no_such_view","code":400} The view does in fact exist. The couchdb-lucene server then prints out: INFO [testdb] Indexing from update_seq start Despite the message, though, nothing shows up in the indexes directory. Nor does the couchdb-lucene log say anything interesting. It just gives the same INFO message. The only other log message I get is when I change the design document in CouchDB. _design/lucene contains: { "_id": "_design/lucene", "_rev": "6-9b3a6fb41e455dfe88393ba9c5104a25", "fulltext": "{'by_type': {'index': 'function(doc) { var ret = new Document(); ret.add(doc.type); return ret; }' } }" } http://localhost:5984/ returns: {"couchdb":"Welcome","version":"1.3.0a-272d641-git","vendor":{"version":"1.3.0a-272d641-git","name":"The Apache Software Foundation"}} and http://localhost:5985/ (and http://localhost:5984/_fti/local) returns: {"couchdb-lucene":"Welcome","version":"0.9.0-SNAPSHOT"} I googled for a while but didn't see anything that helped. Am I missing something obvious or just too much on the bleeding edge? Any help appreciated. Thanks.