Uploaded image for project: 'C# Driver'
  1. C# Driver
  2. CSHARP-943

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

    XMLWordPrintableJSON

Details

    • Icon: Bug Bug
    • Resolution: Done
    • Icon: Major - P3 Major - P3
    • 1.9
    • 1.9
    • Operations
    • None

    Description

      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();

      Attachments

        Activity

          People

            robert@mongodb.com Robert Stam
            robert@mongodb.com Robert Stam
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: