我有一个查询,它选择要删除的文档。现在,我手动删除它们,就像这样(使用 python):
for id in mycoll.find(query, fields={}):
mycoll.remove(id)
这似乎不是很有效。有没有更好的办法?
编辑
好的,我应该为忘记提及查询详细信息而道歉,因为这很重要。这是完整的python代码:
def reduce_duplicates(mydb, max_group_size):
# 1. Count the group sizes
res = mydb.static.map_reduce(jstrMeasureGroupMap, jstrMeasureGroupReduce, 'filter_scratch', full_response = True)
# 2. For each entry from the filter scratch collection having count > max_group_size
deleteFindArgs = {'fields': {}, 'sort': [('test_date', ASCENDING)]}
for entry in mydb.filter_scratch.find({'value': {'$gt': max_group_size}}):
key = entry['_id']
group_size = int(entry['value'])
# 2b. query the original collection by the entry key, order it by test_date ascending, limit to the group size minus max_group_size.
for id in mydb.static.find(key, limit = group_size - max_group_size, **deleteFindArgs):
mydb.static.remove(id)
return res['counts']['input']
那么,它有什么作用呢?它将重复键的数量减少到max_group_size
每个键值最多,只留下最新的记录。它是这样工作的:
- MR 数据
(key, count)
对。 - 遍历所有对
count > max_group_size
- 按 查询数据
key
,同时按时间戳升序排序(最早的在前)并将结果限制为count - max_group_size
最旧的记录 - 删除每一条找到的记录。
如您所见,这完成了将重复项减少到最多 N 个最新记录的任务。所以,最后两个步骤是foreach-found-remove
,这是我的问题的重要细节,它改变了一切,我必须更具体 - 抱歉。
现在,关于集合删除命令。它确实接受查询,但我的包括排序和限制。我可以用删除来做吗?好吧,我试过了:
mydb.static.find(key, limit = group_size - max_group_size, sort=[('test_date', ASCENDING)])
这次尝试惨败。此外,它似乎搞砸了 mongo。观察:
C:\dev\poc\SDR>python FilterOoklaData.py
bad offset:0 accessing file: /data/db/ookla.0 - consider repairing database
不用说,foreach-found-remove 方法有效并产生了预期的结果。
现在,我希望我已经提供了足够的背景信息,并且(希望)已经恢复了我失去的荣誉。