Uploaded image for project: 'Core Server'
  1. Core Server
  2. SERVER-16777

Capped collection truncation behavior across storage engines is inconsistent

    • Type: Icon: Improvement Improvement
    • Resolution: Done
    • Priority: Icon: Major - P3 Major - P3
    • 2.8.0-rc5
    • Affects Version/s: 2.8.0-rc4
    • Component/s: Storage
    • Labels:
    • Fully Compatible

      Looking at these two lines of source in WT and MMapV1:

      WT: https://github.com/mongodb/mongo/blob/r2.8.0-rc4/src/mongo/db/storage/wiredtiger/wiredtiger_record_store.cpp#L353
      MMapV1: https://github.com/mongodb/mongo/blob/r2.8.0-rc4/src/mongo/db/storage/mmap_v1/record_store_v1_capped.cpp#L403

      Note that in WT a '>' is used and in MMapV1 a '>=' is used. Given a capped collection of size 100, if we insert two documents of size 50 and then truncation occurs:

      • in MMapV1, one document will get deleted because its position would be >= 100
      • in WT no documents would be deleted because the size would not be > 100.

      These two behaviors should be made the same, likely in favor of the existing MMapV1 behavior.

            Assignee:
            jonathan.balsano@mongodb.com Jonathan Balsano
            Reporter:
            jonathan.balsano@mongodb.com Jonathan Balsano
            Votes:
            0 Vote for this issue
            Watchers:
            6 Start watching this issue

              Created:
              Updated:
              Resolved: