Inserting documents is not permitted inMongoDB Compass Readonly Edition. Compass provides two ways to insert documents into your collections: JSON Mode and a Field-by-Field Editor. JSON Mode Allows you to write or paste JSON documents in the editor. Use this mode to insert multiple documents ...
#include "mongo/db/repl/oplog_entry.h" #include "mongo/logv2/log.h" #include "mongo/util/assert_util.h" namespace mongo { namespace repl { namespace { // Must not create too large an object. const auto kInsertGroupMaxGroupSize = write_ops::insertVectorMaxBytes; // Limit number of...