Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是失败的声明:
db.some_collection.update(query,modifier_set, upsert=True, safe=True)
modifier_set的形式为{"$inc":{...}, "$addToSet":{...}}
{"$inc":{...}, "$addToSet":{...}}
我收到一个OperationFailure错误:
OperationFailure
$ operator made object too large
现在,我的文档不太可能超过 16MB。
这种失败还有其他可能的原因吗?
这实际上是一个超大文件的情况。 db.collection_name.stats()确认了。
db.collection_name.stats()