Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SERVER-13874 Make mongo::Milliseconds et al. aliases for equivalent ↵ | Andy Schwerin | 2015-05-13 | 131 | -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 Storch | 2015-05-13 | 2 | -1/+10 |
| | | | | This reverts commit 4d299b49129859fb15a42dfe14e3061fee67ad89. | ||||
* | SERVER-18455 stop logging sync_pullOpLog message in master slave | matt dannenberg | 2015-05-13 | 1 | -2/+0 |
| | |||||
* | SERVER-17913 Log voters at the default loglevel | alexander | 2015-05-13 | 1 | -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 Alabi | 2015-05-13 | 9 | -669/+1958 |
| | | | | catalog manager | ||||
* | SERVER-18049 Put ShardRegistry on Grid | Kaloian Manassiev | 2015-05-13 | 6 | -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.cpp | Kaloian Manassiev | 2015-05-13 | 9 | -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 buildinfo | Jonathan Reams | 2015-05-13 | 2 | -10/+1 |
| | |||||
* | SERVER-18442 better error message when user attempts to change unchangable ↵ | Eric Milkie | 2015-05-13 | 1 | -3/+4 |
| | | | | storage engine metadata | ||||
* | SERVER-18286 Increase the value of the WiredTiger close_idle_time | Dan Pasette | 2015-05-13 | 1 | -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 code | Kaloian Manassiev | 2015-05-12 | 4 | -177/+27 |
| | | | | This change removes some unused code from the internal C++ client. | ||||
* | SERVER-18418 Remote command targeter | Kaloian Manassiev | 2015-05-12 | 13 | -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_v1 | Geert Bosch | 2015-05-12 | 38 | -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 pipeline | Charlie Swanson | 2015-05-12 | 3 | -4/+32 |
| | |||||
* | SERVER-18217 Change Timestamp to OpTime where appropriate. | Siyuan Zhou | 2015-05-12 | 40 | -319/+442 |
| | |||||
* | SERVER-18137 CollectionType should store fully-qualified namespace as ↵ | Daniel Alabi | 2015-05-12 | 9 | -33/+46 |
| | | | | NamespaceString type | ||||
* | SERVER-18409 Retry failed heartbeat before marking a node as DOWN | matt dannenberg | 2015-05-12 | 3 | -20/+169 |
| | |||||
* | SERVER-18212: edits to sort out of memory error message | Sam Kleinman | 2015-05-12 | 1 | -3/+3 |
| | |||||
* | SERVER-18353 Pull RemoteCommandExecutor interface into a separate library | Kaloian Manassiev | 2015-05-12 | 6 | -8/+27 |
| | |||||
* | Revert "SERVER-13874 Make mongo::Milliseconds et al. aliases for equivalent ↵ | Andy Schwerin | 2015-05-12 | 106 | -747/+596 |
| | | | | | | | | stdx::chrono types." This reverts commit 9aac625685811873ffbc2d3e8d09531eff1ce10e. Committed in error. | ||||
* | SERVER-13874 Make mongo::Milliseconds et al. aliases for equivalent ↵ | Andy Schwerin | 2015-05-12 | 106 | -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 Store | daveh86 | 2015-05-12 | 6 | -1/+54 |
| | |||||
* | SERVER-13360 Check for libunwind if cpu-profiler is turned on | Jonathan Reams | 2015-05-11 | 1 | -2/+1 |
| | |||||
* | SERVER-18383 Remove sharded agg fallback code for 2.4 shards | Charlie Swanson | 2015-05-11 | 4 | -142/+18 |
| | |||||
* | SERVER-18376 Re-add bits to buildinfo | Jonathan Reams | 2015-05-11 | 1 | -1/+1 |
| | |||||
* | SERVER-18334 preserve existing error message if runCommand fails due to ↵ | Adam Midvidy | 2015-05-11 | 1 | -2/+18 |
| | | | | connection failure | ||||
* | SERVER-18195 Read after optime (repl only) | Randolph Tan | 2015-05-11 | 23 | -136/+1192 |
| | |||||
* | Revert "SERVER-16741 Add escape sequence to directoryperdb paths in KV Store" | Adam Midvidy | 2015-05-11 | 3 | -50/+1 |
| | | | | This reverts commit e45ec68181c5d27074c75be6627f9660f75cf484. | ||||
* | SERVER-16741 Add escape sequence to directoryperdb paths in KV Store | daveh86 | 2015-05-11 | 3 | -1/+50 |
| | |||||
* | SERVER-18353 Move the remote command executor to a separate library | Kaloian Manassiev | 2015-05-10 | 44 | -379/+511 |
| | |||||
* | SERVER-18349 Check validity of the database name for movePrimary | Kaloian Manassiev | 2015-05-10 | 2 | -10/+6 |
| | |||||
* | Remove unnecessary include of rwlock.h | Geert Bosch | 2015-05-08 | 2 | -1/+1 |
| | |||||
* | SERVER-17639: Add some more documentation for RecordStore | Geert Bosch | 2015-05-08 | 1 | -3/+22 |
| | |||||
* | SERVER-17639: Document behavior on errors during StorageEngine shutdown | Geert Bosch | 2015-05-08 | 1 | -0/+1 |
| | |||||
* | SERVER-17639: Rewrite the storage README.md | Geert Bosch | 2015-05-08 | 1 | -241/+121 |
| | |||||
* | SERVER-9666 Remove coreserver library | Andrew Morrow | 2015-05-08 | 14 | -33/+0 |
| | |||||
* | SERVER-9666 Remove mongocommon library | Andrew Morrow | 2015-05-08 | 12 | -52/+24 |
| | |||||
* | SERVER-18227 Implement RS rollback for collmod of flags and validator | Mathias Stearn | 2015-05-08 | 1 | -16/+73 |
| | |||||
* | SERVER-18227 Ban setting a document validator on system collections | Mathias Stearn | 2015-05-08 | 3 | -17/+44 |
| | |||||
* | SERVER-18227 Add a mechanism to disable document validation and start using it | Mathias Stearn | 2015-05-08 | 14 | -9/+140 |
| | | | | This does not necessarily cover all places that need to disable validation. | ||||
* | SERVER-18227 Initial part of document validation | Mathias Stearn | 2015-05-08 | 13 | -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 size | Geert Bosch | 2015-05-08 | 1 | -1/+1 |
| | |||||
* | SERVER-16381 last key examined by IXSCAN stage should also count towards ↵ | David Storch | 2015-05-08 | 1 | -2/+0 |
| | | | | keysExamined | ||||
* | SERVER-17984 doTTLForIndex() delete with manual index scan | Jason Rassi | 2015-05-07 | 1 | -34/+93 |
| | |||||
* | Remove unused qlock.h file. | Geert Bosch | 2015-05-07 | 1 | -376/+0 |
| | |||||
* | SERVER-17943 Add $filter aggregation expression | Charlie Swanson | 2015-05-07 | 3 | -1/+136 |
| | |||||
* | SERVER-18190: Make ParallelBatchWriterMode use a LockManager managed lock | Geert Bosch | 2015-05-07 | 10 | -140/+168 |
| | |||||
* | SERVER-18364 ensure multikey bounds construction prefers non-negation ↵ | David Storch | 2015-05-07 | 1 | -2/+5 |
| | | | | predicates over negations | ||||
* | SERVER-9871 Add error reporting methods to env | Jonathan Reams | 2015-05-07 | 1 | -6/+3 |
| | |||||
* | SERVER-18353 Move replication's ConnectionPool to a separate library | Kaloian Manassiev | 2015-05-07 | 6 | -356/+483 |
| |