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

mongorestore object check should print error

    XMLWordPrintableJSON

Details

    • Icon: Task Task
    • Resolution: Done
    • Icon: Major - P3 Major - P3
    • 3.0.0
    • Legacy C++ Implementation
    • mongorestore

    Description

      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.

      Attachments

        Activity

          People

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

            Dates

              Created:
              Updated:
              Resolved: