summaryrefslogtreecommitdiff
path: root/src/mongo
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-13874 Make mongo::Milliseconds et al. aliases for equivalent ↵Andy Schwerin2015-05-13131-1058/+1261
| | | | | | | | stdx::chrono types. Also introduces operators for adding stdx::chrono::duration to Date_t, subtracting two Date_ts to get Milliseconds, and remove the use of reinterpret_cast from the implementation of BSON Timestamp type.
* Revert "SERVER-18320 Remove command line from buildinfo"David Storch2015-05-132-1/+10
| | | | This reverts commit 4d299b49129859fb15a42dfe14e3061fee67ad89.
* SERVER-18455 stop logging sync_pullOpLog message in master slavematt dannenberg2015-05-131-2/+0
|
* SERVER-17913 Log voters at the default loglevelalexander2015-05-131-1/+2
| | | | | | Signed-off-by: Ramon Fernandez <ramon.fernandez@mongodb.com> Closes #953
* SERVER-18328 Create mongos version of user management commands that uses ↵Daniel Alabi2015-05-139-669/+1958
| | | | catalog manager
* SERVER-18049 Put ShardRegistry on GridKaloian Manassiev2015-05-136-22/+32
| | | | | Gets rid of the static shard registry instance and instead places it on the instance-wide Grid object.
* SERVER-18049 Move StaticShardInfo out of shard.cppKaloian Manassiev2015-05-139-305/+418
| | | | | | | Renames StaticShardInfo to ShardRegistry and moves it to a separate source file. No functional changes, but it removes some unused code.
* SERVER-18320 Remove command line from buildinfoJonathan Reams2015-05-132-10/+1
|
* SERVER-18442 better error message when user attempts to change unchangable ↵Eric Milkie2015-05-131-3/+4
| | | | storage engine metadata
* SERVER-18286 Increase the value of the WiredTiger close_idle_timeDan Pasette2015-05-131-0/+1
| | | | | Set the value of close_idle_time to ~28 hours to prevent idle collections and indexes from being forced out of cache
* SERVER-17754 Cleanup unused internal client codeKaloian Manassiev2015-05-124-177/+27
| | | | This change removes some unused code from the internal C++ client.
* SERVER-18418 Remote command targeterKaloian Manassiev2015-05-1213-172/+524
| | | | | This change introduces a remote command targeter interface to be used as a stub to start implementing the targeting logic.
* SERVER-18410: Move MMAPv1 specific libraries from util to db/storage/mmap_v1Geert Bosch2015-05-1238-108/+105
| | | | | Also removes some dependencies on MMAP_v1 specific files that are not needed anymore, and moves the 'paths' library to db/storage.
* SERVER-14608 Optimize out empty match stage in aggregation pipelineCharlie Swanson2015-05-123-4/+32
|
* SERVER-18217 Change Timestamp to OpTime where appropriate.Siyuan Zhou2015-05-1240-319/+442
|
* SERVER-18137 CollectionType should store fully-qualified namespace as ↵Daniel Alabi2015-05-129-33/+46
| | | | NamespaceString type
* SERVER-18409 Retry failed heartbeat before marking a node as DOWNmatt dannenberg2015-05-123-20/+169
|
* SERVER-18212: edits to sort out of memory error messageSam Kleinman2015-05-121-3/+3
|
* SERVER-18353 Pull RemoteCommandExecutor interface into a separate libraryKaloian Manassiev2015-05-126-8/+27
|
* Revert "SERVER-13874 Make mongo::Milliseconds et al. aliases for equivalent ↵Andy Schwerin2015-05-12106-747/+596
| | | | | | | | stdx::chrono types." This reverts commit 9aac625685811873ffbc2d3e8d09531eff1ce10e. Committed in error.
* SERVER-13874 Make mongo::Milliseconds et al. aliases for equivalent ↵Andy Schwerin2015-05-12106-596/+747
| | | | | | | | stdx::chrono types. Also introduces operators for adding stdx::chrono::duration to Date_t, subtracting two Date_ts to get Milliseconds, and remove the use of reinterpret_cast from the implementation of BSON Timestamp type.
* SERVER-16741 Add escape sequence to directoryperdb paths in KV Storedaveh862015-05-126-1/+54
|
* SERVER-13360 Check for libunwind if cpu-profiler is turned onJonathan Reams2015-05-111-2/+1
|
* SERVER-18383 Remove sharded agg fallback code for 2.4 shardsCharlie Swanson2015-05-114-142/+18
|
* SERVER-18376 Re-add bits to buildinfoJonathan Reams2015-05-111-1/+1
|
* SERVER-18334 preserve existing error message if runCommand fails due to ↵Adam Midvidy2015-05-111-2/+18
| | | | connection failure
* SERVER-18195 Read after optime (repl only)Randolph Tan2015-05-1123-136/+1192
|
* Revert "SERVER-16741 Add escape sequence to directoryperdb paths in KV Store"Adam Midvidy2015-05-113-50/+1
| | | | This reverts commit e45ec68181c5d27074c75be6627f9660f75cf484.
* SERVER-16741 Add escape sequence to directoryperdb paths in KV Storedaveh862015-05-113-1/+50
|
* SERVER-18353 Move the remote command executor to a separate libraryKaloian Manassiev2015-05-1044-379/+511
|
* SERVER-18349 Check validity of the database name for movePrimaryKaloian Manassiev2015-05-102-10/+6
|
* Remove unnecessary include of rwlock.hGeert Bosch2015-05-082-1/+1
|
* SERVER-17639: Add some more documentation for RecordStoreGeert Bosch2015-05-081-3/+22
|
* SERVER-17639: Document behavior on errors during StorageEngine shutdownGeert Bosch2015-05-081-0/+1
|
* SERVER-17639: Rewrite the storage README.mdGeert Bosch2015-05-081-241/+121
|
* SERVER-9666 Remove coreserver libraryAndrew Morrow2015-05-0814-33/+0
|
* SERVER-9666 Remove mongocommon libraryAndrew Morrow2015-05-0812-52/+24
|
* SERVER-18227 Implement RS rollback for collmod of flags and validatorMathias Stearn2015-05-081-16/+73
|
* SERVER-18227 Ban setting a document validator on system collectionsMathias Stearn2015-05-083-17/+44
|
* SERVER-18227 Add a mechanism to disable document validation and start using itMathias Stearn2015-05-0814-9/+140
| | | | This does not necessarily cover all places that need to disable validation.
* SERVER-18227 Initial part of document validationMathias Stearn2015-05-0813-91/+269
| | | | | This covers setting and changing the validator as well as enforcing it for insert and update.
* SERVER-18190: Fix constant for fillLockerInfo array sizeGeert Bosch2015-05-081-1/+1
|
* SERVER-16381 last key examined by IXSCAN stage should also count towards ↵David Storch2015-05-081-2/+0
| | | | keysExamined
* SERVER-17984 doTTLForIndex() delete with manual index scanJason Rassi2015-05-071-34/+93
|
* Remove unused qlock.h file.Geert Bosch2015-05-071-376/+0
|
* SERVER-17943 Add $filter aggregation expressionCharlie Swanson2015-05-073-1/+136
|
* SERVER-18190: Make ParallelBatchWriterMode use a LockManager managed lockGeert Bosch2015-05-0710-140/+168
|
* SERVER-18364 ensure multikey bounds construction prefers non-negation ↵David Storch2015-05-071-2/+5
| | | | predicates over negations
* SERVER-9871 Add error reporting methods to envJonathan Reams2015-05-071-6/+3
|
* SERVER-18353 Move replication's ConnectionPool to a separate libraryKaloian Manassiev2015-05-076-356/+483
|