For some reason I'm only getting a null key from map/reduce result in couchdb on mac

Result:

{"rows":[
{"key":null,"value":2224}
]}

Im using couchapp v8.1 and couchdb v1.0.2

My map function is:

function(doc) {
    emit(doc.doc_type, 1);
}

My reduce function is:

function(key, values, rereducer) {
  return sum(values);
}

result I was expecting:

{"rows":[
{"key":"type1","value":22}
{"key":"type2","value":32}
{"key":"type3","value":25}
 //snip snip
]}

Any idea where I went wrong?

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

Just to save newbies the pain I've been through to get to this answer, please look at the last part of: http://wiki.apache.org/couchdb/HTTP_view_API

I just add ?group=true to my url, and the reduce result was grouped as expected the default behavior is that reduce will spit out a single value

link|improve this answer
1  
+1 Good advice! I find myself always adding ?reduce=false even if I don't have a reduce function, just to be sure. – JasonSmith May 23 '11 at 0:19
@jhs: FWIW, ?reduce=false used to break when no reduce function was defined, back in 0.11 (I'm glad it was solved). – Victor Nicollet May 26 '11 at 8:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.