【发布时间】:2017-12-11 06:12:40
【问题描述】:
我的应用程序将多种文档类型存储在同一个存储桶中。我知道这不是一个好的做法,但是我可以在我的服务器上创建多少个存储桶,并且目前没有办法解决它。文档以它们的类型为前缀,所以当我得到一个文档时,我只需要连接前缀和 id 来获取密钥,我可以进行密钥查找。
我需要创建一份报告,其中包含来自多个文档类型的信息。
我的地图是这样的:
function(doc, meta) {
var getStep = function(stepName, exit, mapper) {
if (meta.id.indexOf(stepName) !== -1) {
var hotelId = parseInt(meta.id.replace(stepName + '_', ''));
if (hotelId > 0) {
var result = {
hotelId: hotelId,
exit: exit
};
if (mapper !== undefined) {
mapper(result);
}
return result;
}
}
return null;
};
var photos = getStep('PHOTOS', 7);
if (photos != null) {
emit(photos.hotelId, photos);
}
var pricing = getStep('PICR', 5);
if (pricing != null) {
emit(pricing.hotelId, pricing);
}
var owner = getStep('OWNER', 1);
if (owner != null) {
emit(owner.hotelId, owner);
}
var amenity = getStep('AM', 4);
if (amenity != null) {
emit(amenity.hotelId, amenity);
}
var description = getStep('HDESC', 3, function(result) {
result.description = doc.description;
result.hotelRoomTypeId = doc.hotelRoomTypeId;
result.starRating = doc.starRating;
});
if (description != null) {
emit(description.hotelId, description);
}
var contact = getStep('DC', 3, function(result) {
result.email = doc.emailAddress;
result.contact = doc.mainContactName;
});
if (contact != null) {
emit(contact.hotelId, contact);
}
var location = getStep('LOC', 2, function(result) {
result.city = doc.cityName;
result.zip = doc.postalCode;
result.country = doc.countryName;
result.street = doc.stateName + ', ' + doc.streetName;
});
if (location != null) {
emit(location.hotelId, location);
}
var property = getStep('PRP', 1, function(result) {
result.paymentMethodId = doc.paymentMethodId
});
if (property != null) {
emit(property.hotelId, property);
}
}
它生成这个输出:
"total_rows":...,"rows":[
{"id":"DC_1","key":1,"value":{"hotelId":1,"exit":3,"email":"test@example.com","contact":"Jeno"}},
{"id":"HDESC_1","key":1,"value":{"hotelId":1,"exit":3,"description":".","hotelRoomTypeId":0,"starRating":5}},
{"id":"LOC_1","key":1,"value":{"hotelId":1,"exit":2,"city":"Barcelona","zip":"1222","country":"Spain","street":"Catalonia, someplacenice"}},
{"id":"PRP_1","key":1,"value":{"hotelId":1,"exit":1}},
{"id":"PRP_2","key":2,"value":{"hotelId":2,"exit":1}},
{"id":"AM_3","key":3,"value":{"hotelId":3,"exit":4}},
{"id":"AM_4","key":4,"value":{"hotelId":4,"exit":4}},
{"id":"PHOTOS_4","key":4,"value":{"hotelId":4,"exit":7}},
{"id":"PRP_4","key":4,"value":{"hotelId":4"exit":1}},
{"id":"AM_4","key":4,"value":{"hotelId":4,"exit":4}},
{"id":"PRP_4","key":4,"value":{"hotelId":4,"exit":1}},
{"id":"PHOTOS_5","key":5,"value":{"hotelId":5,"exit":7}}
...
]
我正在尝试按新键hotelId 对日期进行分组,并使用自定义reducer 将字段合并到一个文档中。根据错误类型,我收到不同的错误,但所有错误似乎都表明减速器可以返回的日期有限制。如果我将返回类型从一个对象更改为一个关联数组,它的工作方式几乎相同,我会得到一个更好的错误。
function(key, values, rereduce) {
if (rereduce) {
return values;
} else {
var results = {}; // Object!
for (var i = 0; i < values.length; i++) {
var row = values[i];
if (!results[row.hotelId]) {
results[row.hotelId] = {
phone: '',
exit: 1
};
}
var result = results[row.hotelId];
for (var name in row) {
result[name] = row[name];
}
if (row.exit > row.exit) {
result.exit = row.exit;
}
};
return results;
}
}
给我RangeError: Maximum call stack size exceeded
function(key, values, rereduce) {
if (rereduce) {
return values;
} else {
var results = []; // Array!
for (var i = 0; i < values.length; i++) {
var row = values[i];
if (!results[row.hotelId]) {
results[row.hotelId] = {
phone: '',
exit: 1
};
}
var result = results[row.hotelId];
for (var name in row) {
result[name] = row[name];
}
if (row.exit > row.exit) {
result.exit = row.exit;
}
};
return results;
}
}
给我reduction too large error
function(key, values, rereduce) {
if (rereduce) {
return values;
} else {
return values;
}
}
给我RangeError: Maximum call stack size exceeded
如果我跑:
function(key, values, rereduce) {
if (rereduce) {
return values;
} else {
return values.length;
}
}
我回来了:
[ 68, 72, 65, 66, 68, 68, 70, 114 ]
JavaScript 引擎应该能够减少最大 114 大小的数组,并且输出数据应该更小。显然,reduce 可以返回的数据量有限制max_kv_size_per_doc,即 1Mb,也有 10 秒的执行限制,但在我的情况下,这是另外一回事。有没有办法通过更改算法、返回数组或数组或其他方式来绕过这些限制?有什么我可以在地图中做的事情或者我可以在 rereduce 中使用的一些技巧吗?
【问题讨论】:
-
a) 在一个桶中拥有多种文档类型并不是一个坏习惯;这很常见,而且经常被推荐。
-
b) 您使用的是哪个版本的 Couchbase? N1QL 不适合您吗?
-
c) “超出最大调用堆栈大小”听起来像是 JavaScript 错误;理想情况下,您可以调试它并找出它的来源,但不知道该怎么做
-
re: b) 我们使用 3.0.1 但有几个 4.5.1 实例。我肯定会支持一个有效的 N1QL 解决方案,但希望地图减少一个。
-
回复:c) 是的。我得到了原始 JSON,使用 PowerShell 转换它没有问题
标签: javascript mapreduce couchbase