CouchDB views erroring out - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T18:58:54Z http://stackoverflow.com/feeds/question/718039 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/718039/couchdb-views-erroring-out 2 CouchDB views erroring out Vertis 2009-04-04T23:31:04Z 2009-04-05T03:55:56Z <p>I've been playing with CouchDB (and the RelaxDB ruby library) but creating a view and then trying to access it causes a nasty non specific error. I stepped back a step because I thought RelaxDB might be incompatible with the CouchDB version I'm using(0.8.1), but even when I create a new database and equivalent views and call it by manually hitting the URL it still doesn't work.</p> <pre><code>[info] [&lt;0.13529.0&gt;] HTTP Error (code 500): {'EXIT', {function_clause, [{couch_httpd,handle_db_request, [{mochiweb_request,#Port&lt;0.9282&gt;,'GET', "/hello/_design/app/_view/Accounts_all?reduce=false", {1,1}, {2, {"accept", {'Accept',"*/*"}, nil, {"host",{'Host',"localhost:5984"},nil,nil}}}}, 'GET', {"hello",&lt;0.157.0&gt;, ["_design","app","_view", "Accounts_all"]}]}, {couch_httpd,handle_request,2}, {mochiweb_http,headers,4}, {proc_lib,init_p_do_apply,3}]}} </code></pre> http://stackoverflow.com/questions/718039/couchdb-views-erroring-out/718063#718063 0 Answer by MarkusQ for CouchDB views erroring out MarkusQ 2009-04-04T23:50:03Z 2009-04-04T23:50:03Z <p>Check the log files for more specific information; IIRC the external response just give the 500 to prevent leaking configuration information to outsiders. If that doesn't help you, edit the question to include what you found and see if any of us can suss it out.</p> http://stackoverflow.com/questions/718039/couchdb-views-erroring-out/718312#718312 2 Answer by jhs for CouchDB views erroring out jhs 2009-04-05T03:55:56Z 2009-04-05T03:55:56Z <p>I think you are using the 0.9 API with a 0.8 version of the software. See the wiki <a href="http://wiki.apache.org/couchdb/Breaking%5Fchanges" rel="nofollow">Breaking Changes</a> document. You need to be accessing <code>/hello/_view/app/Accounts_all</code>, or consider upgrading to the newly-released CouchDB 0.9.</p>