我正在努力:
我正在使用Bulk.unOrderedOperation
,因为我还在执行单个插入。而且我想在一次操作中再做一切DB。
然而,正在为更新/ upsert操作插入一些没有任何结果的东西。
这是插入文档:
var lineUpPointsRoundRecord = {
lineupId: lineup.id, // String
totalPoints: roundPoints, // Number
teamId: lineup.team, // String
teamName: home.team.name, // String
userId: home.iduser, // String
userName: home.user.name, // String
round: lineup.matchDate.round, // Number
date: new Date()
}
这是upsert文件:
var lineUpPointsGeneralRecord = {
teamId: lineup.team, // String
teamName: home.team.name, // String
userId: home.iduser, // String
userName: home.user.name, // String
round: 0,
signupPoints: home.signupPoints, // String
lfPoints: roundPoints+home.signupPoints, // Number
roundPoints: [roundPoints] // Number
};
这就是我尝试升级/更新的方式:
var batch = collection.initializeUnorderedBulkOp();
batch.insert(lineUpPointsRoundRecord);
batch.find({team: lineUpPointsRoundRecord.teamId, round: 0}).
upsert().
update({
$setOnInsert: lineUpPointsGeneralRecord,
$inc: {lfPoints: roundPoints},
$push: {roundPoints: roundPoints}
});
batch.execute(function (err, result) {
return cb(err,result);
});
为什么不插入/更新?
这是使用水线ORM的JS代码,它也使用mongodb本机驱动程序。
答案 0 :(得分:9)
这里的语法基本上是正确的,但是你的一般执行是错误的,你应该从其他修改中“分离”“upsert”动作。否则,当发生“upsert”时,这些将“冲突”并产生错误:
LineupPointsRecord.native(function (err,collection) {
var bulk = collection.initializeOrderedBulkOp();
// 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);
});
});
确保您的sails-mongo是支持批量操作的最新版本,包括最近的节点本机驱动程序。最近支持v2驱动程序,这对此很好。
答案 1 :(得分:1)
我建议对许多文档中的bulkWrite
使用bulk upsert
示例代码:
在这种情况下,您将创建具有唯一md5
的文档。如果存在文档,则将对其进行更新,但不会像传统的insertMany
那样创建新的文档。
const collection = context.services.get("mongodb-atlas").db("master").collection("fb_posts");
return collection.bulkWrite(
posts.map(p => {
return { updateOne:
{
filter: { md5: p.md5 },
update: {$set: p},
upsert : true
}
}
}
),
{ ordered : false }
);
https://docs.mongodb.com/manual/reference/method/db.collection.bulkWrite/
答案 2 :(得分:-1)
通常我总是将upsert设置为更新时的属性。此外,更新应该能够找到记录本身,因此无需单独查找。
根据环境,$可能是必要的,也可能不是。
batch.update(
{team: lineUpPointsRoundRecord.teamId, round: 0},
{
$setOnInsert: lineUpPointsGeneralRecord,
$inc: {lfPoints: roundPoints},
$push: {roundPoints: roundPoints},
$upsert: true
});