如何正确地更新一个有错误行为的文档?(Mongo bug SERVER-10711)



我正在尝试更新具有更新的文档,如果发现,否则插入

这是我正在尝试的东西(使用帆水线ORM,使用monodb节点驱动程序):

var roundPoints = 93;
var lfPoints = 10 + roundPoints;
var lineUpPointsGeneralRecord = {
  round: 0,
  teamId: "real-madrid-9248",
  totalPoints: roundPoints,
  teamName: "minuto93",
  userId: "bbc1902",
  userName: "Risas Pizza",
  signupPoints: 10,
  lfPoints: lfPoints
};
LineupPointsRecord.native(function (err,collection) {
collection.update(
  {teamId: lineUpPointsGeneralRecord.teamId, round: 0},
  {
    $setOnInsert: lineUpPointsGeneralRecord,
    $inc: {lfPoints: roundPoints},
    $push: {roundPoints: roundPoints}
  },
  {upsert: true},
  function (err,updateResult) {
    sails.log.debug(err,updateResult);
  });
});

但是抱怨失败了:

code: 16836,
err: 'Cannot update 'lfPoints' and 'lfPoints' at the same time' } null

我做错了什么?

编辑

这似乎是一个已知的问题。但是我真的不想让实现一个变通的。我该如何应对呢?

发生错误是因为当"upsert"发生时, $setOnInsert $inc 以及 $push 操作都试图设置文档中的项。由于错误报告,您不能在一次更新中使用两个不同的操作符修改文档的相同属性。

解决方案是"分离"更新,以便只有一个操作"仅"执行$setOnInsert,而另一个操作将执行文档匹配的其他更改。最好的方法是使用批量操作,以便所有请求一次发送到服务器:

LineupPointsRecord.native(function (err,collection) {
    var bulk = collection.initializeOrderedBulOp();
    // Match and update only. Do not attempt upsert
    bulk.find({
        "teamId": lineUpPointsGeneralRecord.teamId,
        "round": 0
    }).updateOne({
        "$inc": { "lfPoints": roundPoints },
        "$push": { "roundPoints": roundPoints }
    });
    // Attempt upsert with $setOnInsert only
    bulk.find({
        "teamId": lineUpPointsGeneralRecord.teamId,
        "round": 0
    }).upsert().updateOne({
        "$setOnInsert": lineUpPointsGeneralRecord
    });
    bulk.execute(function (err,updateResult) {
        sails.log.debug(err,updateResult);
    });
});

因为第二个操作只会在文档不匹配的地方尝试upsert,所以没有冲突,因为没有其他操作。在第一个操作中,这将"仅"对文档"确实匹配"的地方进行更改,并且由于这里没有尝试修改,因此也没有冲突。

确保sail_mongo是支持Bulk操作的最新版本,并包含最新的节点本地驱动程序。最新的版本支持v2驱动程序,这很好。

相关内容

  • 没有找到相关文章

最新更新