mongodb:模拟 couchdb 的增量映射减少
是否有任何技术可以在 Mongodb 中模拟 couchdb 的增量 MapReduce。本质上,我们希望将周期性映射缩减为仅触及集合中的新文档。
我们可以使用 Finalize 将文档标记为“旧”,然后将它们从下一个映射过程中过滤掉吗?
Are there any techniques for emulating couchdb's incremental MapReduce in Mongodb. Essentially, we want to a periodic map reduce to only touch new documents in a collection.
Could we use finalize to mark documents as 'old' and then filter them out of the next map process?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,从 MongoDB 1.8 开始就支持增量映射缩减。请参阅我所做的示例文章:http://blog.evilmonkeylabs。 com/2011/01/27/MongoDB-1_8-MapReduce/
Yes, there is support for incremental map reduce since MongoDB 1.8. See the writeup I did for examples: http://blog.evilmonkeylabs.com/2011/01/27/MongoDB-1_8-MapReduce/
我编写了一个方法来执行此操作,但通过使用默认 ObjectId id 中编码的时间戳来避免接触每个源记录。查看要点:
https://gist.github.com/2233072
I wrote a method that does this but avoids having to touch each source record, by using the timestamp encoded in the default ObjectId ids. See the gist:
https://gist.github.com/2233072