Uploaded image for project: 'MongoDB Database Tools'
  1. MongoDB Database Tools
  2. TOOLS-122

mongorestore object check should print error

    • Type: Icon: Task Task
    • Resolution: Done
    • Priority: Icon: Major - P3 Major - P3
    • 3.0.0
    • Affects Version/s: Legacy C++ Implementation
    • Component/s: mongorestore

      When mongorestore is run with object check (default in 2.4) it performs the check as follows:

       if ( _objcheck && ! o.valid() ) {
      

      The problem here is that o.valid() is implemented as follows and consumes the Status object returned by validateBSON

      bool BSONObj::valid() const {
          return validateBSON( objdata(), objsize() ).isOK();
      }
      

      mongorestore should instead call validateBSON directly and if Status.isOK() is false print Status.code() & Status.codeString() to help in pinpointing BSON corruption.

            Assignee:
            Unassigned Unassigned
            Reporter:
            james.wahlin@mongodb.com James Wahlin
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: