我继承了一个旧的Mongo数据库。让我们关注以下两个集合(删除大部分内容以提高可读性):
收藏用户
db.user.find_one({"email": "user@host.com"})
{'lastUpdate': datetime.datetime(2016, 9, 2, 11, 40, 13, 160000),
'creationTime': datetime.datetime(2016, 6, 23, 7, 19, 10, 6000),
'_id': ObjectId('576b8d6ee4b0a37270b742c7'),
'email': 'user@host.com' }
集合条目(一个用户到多个条目):
db.entry.find_one({"userId": _id})
{'date_entered': datetime.datetime(2015, 2, 7, 0, 0),
'creationTime': datetime.datetime(2015, 2, 8, 14, 41, 50, 701000),
'lastUpdate': datetime.datetime(2015, 2, 9, 3, 28, 2, 115000),
'_id': ObjectId('54d775aee4b035e584287a42'),
'userId': '576b8d6ee4b0a37270b742c7',
'data': 'test'}
如您所见,两者之间没有DBRef。
我想要做的是计算条目总数,以及在给定日期之后更新的条目数。
为此,我使用了Python的pymongo库。下面的代码让我得到了我需要的东西,但速度很慢。
from pymongo import MongoClient
client = MongoClient('mongodb://foobar/')
db = client.userdata
# First I need to fetch all user ids. Otherwise db cursor will time out after some time.
user_ids = [] # build a list of tuples (email, id)
for user in db.user.find():
user_ids.append( (user['email'], str(user['_id'])) )
date = datetime(2016, 1, 1)
for user_id in user_ids:
email, _id = user_id
t0 = time.time()
query = {"userId": _id}
no_of_all_entries = db.entry.find(query).count()
query = {"userId": _id, "lastUpdate": {"$gte": date}}
no_of_entries_this_year = db.entry.find(query).count()
t1 = time.time()
print("delay ", round(t1 - t0, 2))
print(email, no_of_all_entries, no_of_entries_this_year)
在笔记本电脑上运行db.entry.find
查询需要大约0.83秒,在AWS服务器(不是MongoDB服务器)上运行0.54。
拥有~20000个用户需要花费3个小时才能获得所有数据。 这是你期望在Mongo中看到的那种延迟吗?我该怎么做才能改善这一点?请记住,MongoDB对我来说是个新手。
答案 0 :(得分:2)
不是单独为所有用户运行两个聚合,而是只为db.collection.aggregate()
的所有用户获取两个聚合。
而不是(email, userId)
元组,我们将其设为字典,因为它更容易用于获取相应的电子邮件。
user_emails = {str(user['_id']): user['email'] for user in db.user.find()}
date = datetime(2016, 1, 1)
entry_counts = db.entry.aggregate([
{"$group": {
"_id": "$userId",
"count": {"$sum": 1},
"count_this_year": {
"$sum": {
"$cond": [{"$gte": ["$lastUpdate", date]}, 1, 0]
}
}
}}
])
for entry in entry_counts:
print(user_emails.get(entry['_id']),
entry['count'],
entry['count_this_year'])
我非常确定将用户的电子邮件地址输入到结果中,但我也不是mongo专家。