MongoDB 中,插入数据时,如果一个 Collection 不存在会先创建 Collection 再插入数据。
但是如果是在一个事务里,就不允许创建新的 Collection事件发生。否则会报错:
(OperationNotSupportedInTransaction) Cannot create namespace testdb.xxx in multi-document transaction.
因此需要提前创建好 Collection:
db.createCollection("xxx")