在casbah中,我看到在MongoCollection上定义了以下函数:
def
insert[A](docs: A*)(implicit dbObjView: (A) ⇒ commons.TypeImports.DBObject, concern: mongodb.WriteConcern = writeConcern, encoder: TypeImports.DBEncoder = ...): TypeImports.WriteResult
如果我理解这一点,你可以将大量DBObject传递给此函数以进行批量插入。
我的担忧/问题是这是一个参数列表。如果我有一个巨大的批量插入(比如几百个)怎么办?是否可以通过这种方式传递对象的限制?
答案 0 :(得分:3)
可以在单个命令中使用的文档大小有限制~16mb,因此通过该路径可以执行的插入数量有限制。
但是,如果您使用Casbah 2.7中为MongoDB 2.6发布的BulkOperationBuilders
之一,它会自动将操作拆分为批次,以便您可以执行更大的批量操作:
val collection = MongoClient()("test")("bulkOperation")
collection.drop()
// Ordered bulk operation
val builder = collection.initializeOrderedBulkOperation
builder.insert(MongoDBObject("_id" -> 1))
builder.insert(MongoDBObject("_id" -> 2))
builder.insert(MongoDBObject("_id" -> 3))
builder.find(MongoDBObject("_id" -> 1)).updateOne($set("x" -> 2))
builder.find(MongoDBObject("_id" -> 2)).removeOne()
builder.find(MongoDBObject("_id" -> 3)).replaceOne(MongoDBObject("_id" -> 3, "x" -> 4))
val result = builder.execute()
有序或无序操作请参阅:http://mongodb.github.io/casbah/whats_new.html#ordered-unordered-bulk-operations