summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/storage_engine_metadata.h
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-40357 expand all calls to MONGO_DISALLOW_COPYINGBilly Donahue2019-03-281-2/+2
| | | | | | | | | | | produced by: hits="$(git grep -n MONGO_DISALLOW_COPYING | cut -d: -f1 )" for f in "$hits"; do sed -i.orig ' s/^\( *\)MONGO_DISALLOW_COPYING(\(.*\));/\1\2(const \2\&) = delete;\n\1\2\& operator=(const \2\&) = delete;/; ' $f done
* SERVER-39944 Implement keystore metadataJonathan Reams2019-03-211-0/+4
|
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-1/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-8/+10
|
* Revert "SERVER-13455 Add new configuration option for mongod to allow ↵Daniel Gottlieb2018-08-291-10/+2
| | | | | | separate journal directory for WT" This reverts commit d3656459d016d6a1be0788acfe3276734ab59210.
* SERVER-13455 Add new configuration option for mongod to allow separate ↵Dewal Gupta2018-08-241-2/+10
| | | | journal directory for WT
* SERVER-28741: add --groupCollections server parameterDaniel Gottlieb2017-04-241-3/+6
|
* SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto2015-06-201-76/+75
|
* SERVER-17861 Change the default storage engine to wiredTiger.Max Hirschhorn2015-05-281-16/+10
| | | | | | | WiredTiger is used as the default storage engine if the dbpath does not contain any data files. Otherwise, the storage engine specified in the storage.bson metadata file is used when the --storageEngine flag is omitted from the command line invocation.
* Revert "SERVER-17861 Change the default storage engine to wiredTiger."Max Hirschhorn2015-05-271-10/+16
| | | | This reverts commit a335b35b2e95538220941960764e6f60136b3973.
* SERVER-17861 Change the default storage engine to wiredTiger.Max Hirschhorn2015-05-261-16/+10
| | | | | | | WiredTiger is used as the default storage engine if the dbpath does not contain any data files. Otherwise, the storage engine specified in the storage.bson metadata file is used when the --storageEngine flag is omitted from the command line invocation.
* Revert "SERVER-17861 Change the default storage engine to wiredTiger."Max Hirschhorn2015-05-221-10/+16
| | | | This reverts commit 38862aaa17e06e5e6733598bbb487774cb3616f7.
* SERVER-17861 Change the default storage engine to wiredTiger.Max Hirschhorn2015-05-211-16/+10
| | | | | | | WiredTiger is used as the default storage engine if the dbpath does not contain any data files. Otherwise, the storage engine specified in the storage.bson metadata file is used when the --storageEngine flag is omitted from the command line invocation.
* SERVER-17210 overwrite existing metadata on startup if corruptedBenety Goh2015-02-111-1/+3
|
* SERVER-16940 Change pass-by-const-ref of StringData to pass-by-valueTyler Brock2015-02-061-1/+1
|
* SERVER-16567 removed StorageEngineMetadata::updateIfMissingBenety Goh2015-01-091-8/+0
|
* SERVER-16567 added StorageEngineMetadata support for optional storage engine ↵Benety Goh2015-01-091-3/+25
| | | | BSON document
* SERVER-15986 SERVER-16283 improve validation to detect mmapv1 local.ns filesBenety Goh2014-11-241-9/+9
|
* SERVER-15986 added storage_engine_metadata - reads and writes storage engine ↵Benety Goh2014-11-201-0/+110
metadata file in data directory