Split large batches correctly when InsertBatch is being emulated using write commands

XMLWordPrintableJSON

    • Type: Bug
    • Resolution: Done
    • Priority: Major - P3
    • 1.9
    • Affects Version/s: 1.9
    • Component/s: Operations
    • None
    • None
    • None
    • None
    • None
    • None
    • None
    • None

      The following code throws an exception when connected to a 2.6.x server:

      BsonDocument[] documents; // assume it has 10,000 documents
      var result = collection.InsertBatch(documents);
      

      The fluent bulk API version of the same operation does not throw an exception:

      BsonDocument[] documents; // assume it has 10,000 documents
      var bulk = collection.InitializeOrderedBulkOperation();
      foreach (var document in documents)
      {
          bulk.Insert(document);
      }
      var result = bulk.Execute();
      

            Assignee:
            Robert Stam
            Reporter:
            Robert Stam
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: