首页 > 解决方案 > 如何在 NodeJs 中将 Mongo Bulk 与多文档事务一起使用?

问题描述

我想在 mongo 中运行批量操作,但同时在多文档事务中运行它。我正在使用 Meteor 运行 MongoDb 的 NodeJs 驱动程序。

根据 MongoDB 文档(https://docs.mongodb.com/manual/reference/method/Bulk/),应该可以将 和 结合Bulk起来multi-document transactions。但是,我无法解决这个问题。

我的问题是如何将session对象传递给批量操作。对于非批量操作,我们只是将其作为选项对象传递const options = {session: session}。我尝试以多种方式通过它,但似乎没有任何效果。

在操作中应该如何使用session对象Bulk

下面是我想要实现的一个简单示例。

const getMongoClient = function() {
  const { client } = MongoInternals.defaultRemoteCollectionDriver().mongo;
  return client;
}


const session = client.startSession();
try {
  session.startTransaction();
  const bulk = someCollectionToBulkWrite.rawCollection().initializeOrderedBulkOp(); // Pass the session here?

  const dataInsert = someCollection.insert(someObject, {session}).await().value;
  const dataInsertOtherDocument = someOtherCollection.insert(someOtherObject, {session}).await().value;

  bulk.find( { _id: someId } ).update( { $set: { testField: 3}}); //Or pass the session here?
  bulk.find( { _id: someOtherId } ).update( { $set: { testField: 3}});

  bulk.execute().await(); // Or pass the session here?

  session.commitTransaction().await();
} finally {
  session.endSession();
}

标签: node.jsmongodbmeteorbulkinsert

解决方案


我检查了 NodeJS 的 MongoDB 驱动程序的代码,更具体地检查了BulkAPI ( https://github.com/mongodb/node-mongodb-native/blob/master/lib/bulk/common.js )

方法的定义execute如下所示:

execute(_writeConcern, options, callback);

因此,会话应该作为第二个参数传递给execute. 在问题中提供的示例中,如下所示:

bulk.execute(null, {session}).await();


推荐阅读