我创建了一个上限集合来存储我的日志数据,其中包含几个字段。由于某些要求,我想在此集合中添加一个名为“createAt”的附加字段。
db.myLogs.update({},{$set: {"createAt":new Date()}})
这是抛出以下错误:
WriteResult({
"nMatched" : 0,
"nUpserted" : 0,
"nModified" : 0,
"writeError" : {
"code" : 10003,
"errmsg" : "Cannot change the size of a document in a capped collection: 39 != 57"
}
})
如何将一些字段添加到上限集合中?