首页 > 解决方案 > 在 mongo 中插入 doc 时 E11000 重复键错误收集

问题描述

 var doc = new BsonDocument();
  documentRepository.AddDocument(doc, "myCollection").GetAwaiter().GetResult();
  
  public async Task<string> AddDocument(BsonDocument item, string collection)
  {
     await _database.GetCollection<BsonDocument>(collection).InsertOneAsync(item);
     return item["_id"].ToString(); // this is where exception happens
  }     

E11000 duplicate key error collection: myApp.myCollection index: id dup key: { _id: ObjectId('12381e2b09f14f0001fead43') } MongoDB.Driver.MongoWriteException: 写入操作导致错误。

E11000 duplicate key error collection: myApp.myCollection index: _id_ dup key: { _id: ObjectId('12381e2b09f14f0001fead43') }
    ---> MongoDB.Driver.MongoBulkWriteException`1[MongoDB.Bson.BsonDocument]: A bulk write operation resulted in one or more errors.
    
    E11000 duplicate key error collection: myApp.myCollection index: _id_ dup key: { _id: ObjectId('12381e2b09f14f0001fead43') }
    at MongoDB.Driver.MongoCollectionImpl`1.BulkWriteAsync(IClientSessionHandle session, IEnumerable`1 requests, BulkWriteOptions options, CancellationToken cancellationToken)
    at MongoDB.Driver.MongoCollectionImpl`1.UsingImplicitSessionAsync[TResult](Func`2 funcAsync, CancellationToken cancellationToken)
    at MongoDB.Driver.MongoCollectionBase`1.InsertOneAsync(TDocument document, InsertOneOptions options, Func`3 bulkWriteAsync)

混乱来自这样一个事实,即异常消息说我正在尝试执行批量插入

MongoDB.Driver.MongoBulkWriteException`1[MongoDB.Bson.BsonDocument]

如您所见,我是否只插入一个文档

标签: c#mongodb

解决方案


发生此异常是因为您试图_id在集合中包含重复的值(您可以使用 mongo shell 进行检查)。上面的代码本身并不能触发这个错误,但是如果你调用AddDocument两次或多次就会出现这个错误。请注意,在第一次 AddDocument 调用之后,item文档将具有_id值填充,因此在下次尝试使用此对象时,驱动程序将尝试插入具有重复值的文档


推荐阅读