我使用pymongo聚合数据,我使用的数据约为1000万
df_list = mycol.aggregate([{'$match': {'tbl_id': {'$in': doc_list}}}, {'$project': {'_id': 0}}], allowDiskUse=True) # doc_list may be very large
聚合数据,但仍然出错,pymongo.errors.DocumentTooLarge: 'aggregate' command document too large
,allowDiskUse=True
对我来说不起作用。如何处理?