我从旧版代码中获得了"Error: error occured while saving model: VersionError: No matching document found for id "5bb83342342342348a5"
。
(相关:"VersionError: No matching document found" error on Node.js/Mongoose)
此问题是由于保存了非常大的数据集(几次演出,需要2天的创建时间)造成的。
现在,我正在尝试重现该错误,但是我不想花2到4天来重现错误。有没有办法人为地延长锁定-解锁阶段?
答案 0 :(得分:0)
您要做的是保存自检索以来已被修改的文档。这是一个如何重现它的示例:
// Get the same document twice
const data1 = await model.findOne(...);
const data2 = await model.findOne(...);
data1.someField = x;
data2.someField = y;
await data1.save();
// save is going to throw
await data2.save();