Couchbase, reduction too large error
问题 On my work I using couchbase and I have some problems. From some devices data come to couchbase, and after I calling aggregate view. This view must aggregate values by 2 keys: timestamp and deviceId. Everything was fine, before I have tried to aggregate more then 10k values. In this case I have reduction error Map function: function(doc, meta) { if (doc.type == "PeopleCountingIn"&& doc.undefined!=true) { emit(doc.id+"@"+doc.time, [doc.in, doc.out, doc.id, doc.time, meta.id]); } } Reduce