mongodb:模拟 couchdb 的增量映射减少

发布于 2024-12-01 17:32:09 字数 134 浏览 0 评论 0原文

是否有任何技术可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅紫色的梦幻 2024-12-08 17:32:09

是的,从 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/

栀子花开つ 2024-12-08 17:32:09

我编写了一个方法来执行此操作,但通过使用默认 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文