Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SERVER-13960 fix access planning for OR with inexact child predicates | David Storch | 2014-05-30 | 4 | -337/+522 |
| | | | | | Includes a refactor of QueryPlannerAccess::processIndexScans(...) which makes this change saner. | ||||
* | SERVER-11943 display the correct reason for the moveChunk command failing. | daveh86 | 2014-05-30 | 1 | -4/+5 |
| | | | | Signed-off-by: Benety Goh <benety@mongodb.com> | ||||
* | SERVER-14089 Remove support for schemaVersion24 users. | Andy Schwerin | 2014-05-29 | 12 | -1572/+3 |
| | |||||
* | SERVER-14064 provide planSummary for slow count commands | David Storch | 2014-05-29 | 2 | -0/+61 |
| | |||||
* | SERVER-14073 allow planSummary string to be longer | David Storch | 2014-05-29 | 1 | -1/+1 |
| | |||||
* | SERVER-13883 findAndModify command should accept update:{} | Jason Rassi | 2014-05-29 | 2 | -1/+53 |
| | |||||
* | SERVER-13883 findAndModify return null if !new and doc not found | Jason Rassi | 2014-05-29 | 1 | -9/+12 |
| | | | | | | Fixes an edge case where findAndModify would return {} instead of null if the doc was not found (specifically: if sort was specified and the update resulted in an upsert). | ||||
* | SERVER-13022 added option to set permissions on UNIX domain socket file | daveh86 | 2014-05-29 | 3 | -3/+18 |
| | | | | Signed-off-by: Benety Goh <benety@mongodb.com> | ||||
* | SERVER-8492 SERVER-13893 Test for detecting named/unnamed unix socket | daveh86 | 2014-05-29 | 1 | -0/+17 |
| | | | | Signed-off-by: Benety Goh <benety@mongodb.com> | ||||
* | SERVER-11776 move port check outside loop | Benety Goh | 2014-05-29 | 1 | -18/+21 |
| | |||||
* | SERVER-11776 added scott's replication test for the isself command with ↵ | Benety Goh | 2014-05-29 | 1 | -0/+32 |
| | | | | mapped ports | ||||
* | SERVER-11776 Replication 'isself' check should allow mapped ports | Rajat Chopra | 2014-05-29 | 1 | -7/+4 |
| | | | | | | | | 'isself' should match the ports only if the hosts are being string matched. In cases where an instance is being addressed through a proxy port, port matching is an incorrect check - it invalidates a genuine match. Signed-off-by: Benety Goh <benety@mongodb.com> | ||||
* | Revert "SERVER-13961 Pass LockState to DBWrite and DBRead directly" | Kaloian Manassiev | 2014-05-28 | 169 | -1446/+1036 |
| | | | | This reverts commit 0672061deb58aac931912bed68d014247c581968. | ||||
* | SERVER-13961 Pass LockState to DBWrite and DBRead directly | Kaloian Manassiev | 2014-05-28 | 169 | -1036/+1446 |
| | | | | | This is part of the changes to move LockState be part of OperationContext and not retrieved from TLS. | ||||
* | SERVER-13961 Remove thread-local write intents | Kaloian Manassiev | 2014-05-28 | 5 | -176/+7 |
| | | | | | | | This change makes all write intents go straight to the global write intents list. Cleaning this up is necessary as a step to going to a per-operation intents list, but it may cause more contention on the global intents list. | ||||
* | SERVER-14056 Cross-DB renameCollection needs to call commitIfNeeded | Jason Rassi | 2014-05-28 | 1 | -0/+1 |
| | | | | | | | | | | | Fixes regression introduced in 0abf27ae. Before 0abf27a, renameCollection used a DBDirectClient to read objects from the source namespace. The call to DBClientCursor::next() would issue a getmore after finishing each batch, which would reach a commit point (in DBDirectClient::call()). The port to the new collection interface removed the use of DBDirectClient, which removed renameCollection's commit point. | ||||
* | SERVER-14077 make awaitReplication() change configVersion if it sees a ↵ | matt dannenberg | 2014-05-28 | 1 | -75/+83 |
| | | | | higher one | ||||
* | SERVER-14076 remove replset_remove_node.js as it is redundant and flakey | Matt Dannenberg | 2014-05-28 | 1 | -87/+0 |
| | |||||
* | SERVER-13985 Remove old v3 to v4 config metadata upgrade jstests | Shaun Verch | 2014-05-28 | 5 | -1024/+0 |
| | |||||
* | SERVER-4740 Don't use unsigned for time deltas | Mathias Stearn | 2014-05-27 | 15 | -46/+47 |
| | | | | | | | Leads to weird bugs when time goes backwards. This commit doesn't resolve SERVER-4740 (Use monotonic clock sources for Timer) but lessens the impact of using a non-monotonic clock. | ||||
* | SERVER-14065 use namespace mongo::repl in dbtests pertaining to replication | matt dannenberg | 2014-05-27 | 3 | -35/+39 |
| | |||||
* | SERVER-14058 Move thread_pool into "foundation" library. | Andy Schwerin | 2014-05-27 | 1 | -1/+1 |
| | |||||
* | SERVER-14035 Introduce MONGO_NOEXCEPT macros in mongo/platform/compiler.h. | Andy Schwerin | 2014-05-27 | 1 | -0/+11 |
| | | | | | | These macros expand to "noexcept" in C++11 and "throw ()" in earlier C++ compilers, so we can label methods that should terminate() rather than allow an exception to escape. | ||||
* | SERVER-13856 remove unnecessary usage of repl:: from the repl directory | matt dannenberg | 2014-05-27 | 10 | -16/+16 |
| | |||||
* | SERVER-13985 Remove server side js usage from printShardingStatus | Shaun Verch | 2014-05-27 | 1 | -2/+7 |
| | |||||
* | SERVER-14049 port pull request #681 "fix v8 SConscript python path" to v8-3.25 | Benety Goh | 2014-05-27 | 1 | -1/+1 |
| | | | | | | https://github.com/mongodb/mongo/pull/681 The local python patch should be searched at first to avoid conflicts or incompatible libs versions used during the build process. | ||||
* | SERVER-14049 Fix third-party v8 building when required python libs are also ↵ | Ultrabug | 2014-05-27 | 1 | -1/+1 |
| | | | | | | | | installed on the system. The local python patch should be searched at first to avoid conflicts or incompatible libs versions used during the build process. Signed-off-by: Benety Goh <benety@mongodb.com> | ||||
* | SERVER-8192 additional btree key generation unit tests | David Storch | 2014-05-27 | 1 | -0/+48 |
| | |||||
* | SERVER-14043 s/namespace replset/namespace repl/ | matt dannenberg | 2014-05-27 | 108 | -361/+361 |
| | |||||
* | SERVER-14042 decrease yea delay from 30 seconds to 3 | matt dannenberg | 2014-05-27 | 1 | -1/+1 |
| | |||||
* | SERVER-13773 more rollback jstests | matt dannenberg | 2014-05-27 | 10 | -0/+692 |
| | |||||
* | Revert "SERVER-8192 rewritten V1 btree key generation" | David Storch | 2014-05-24 | 6 | -488/+178 |
| | | | | This reverts commit 441b3c183c76399f248205989dec757708601394. | ||||
* | SERVER-12803: Use CR/LF in log files on Windows | Mark Benvenuto | 2014-05-23 | 1 | -1/+31 |
| | |||||
* | SERVER-13760 Do not call dateToISOString if date is not formatable | Shaun Verch | 2014-05-23 | 7 | -8/+101 |
| | |||||
* | post 2.7.1 | Ernie Hershey | 2014-05-23 | 7 | -7/+7 |
| | |||||
* | BUMP 2.7.1r2.7.1 | Ernie Hershey | 2014-05-23 | 7 | -7/+7 |
| | |||||
* | SERVER-12621 fix flaky auth_repl.js test | Amalia Hawkins | 2014-05-23 | 1 | -1/+1 |
| | |||||
* | SERVER-13865 disable multiversion test until backport | Greg Studer | 2014-05-23 | 1 | -0/+3 |
| | |||||
* | SERVER-14033 Topology coordinator for replication | Eric Milkie | 2014-05-23 | 6 | -5/+578 |
| | | | | Not yet in use by replication. | ||||
* | SERVER-13865 handle edge case for v2.4 when upserted _id not returned | Greg Studer | 2014-05-23 | 6 | -8/+145 |
| | |||||
* | SERVER-9526 a more elegant solution to printout of BinData in log messages | Johan Hedin | 2014-05-23 | 1 | -4/+9 |
| | | | | | | This commit changes the behaviour of BSONElement::toString() to print BinData in the same way as the other element types. It puts a cap on the lenght of the binary data in the same way as for string. Using full == true overrides the cap in the same way. Signed-off-by: Greg Studer <greg@10gen.com> | ||||
* | SERVER-12621 narrow the localhost exception when auth is enabled | Amalia Hawkins | 2014-05-22 | 53 | -268/+510 |
| | |||||
* | SERVER-10044: Add more diagnostic information on OOM | Mark Benvenuto | 2014-05-22 | 1 | -0/+12 |
| | |||||
* | SERVER-13910: Warn the user when running a 32-bit build on Win64 | Mark Benvenuto | 2014-05-22 | 3 | -0/+35 |
| | | | | | | Windows 32 bit builds have less virtual memory available then 64-bit builds, warn the user they should use a 64-bit build over a 32-bit build. | ||||
* | SERVER-13912 Capped collections with size=0 are promoted to the minimum ↵ | Mathias Stearn | 2014-05-22 | 2 | -2/+14 |
| | | | | Extent size | ||||
* | SERVER-13675 do not cache plans if there is a tie | David Storch | 2014-05-22 | 10 | -502/+499 |
| | |||||
* | SERVER-13645 kill dead code | Eric Milkie | 2014-05-22 | 2 | -8/+1 |
| | |||||
* | SERVER-14001 remove reIndex branch from rollback code since we do not oplog ↵ | matt dannenberg | 2014-05-22 | 1 | -3/+0 |
| | | | | reIndex | ||||
* | SERVER-14021 move all replication code into namespace replset | matt dannenberg | 2014-05-22 | 102 | -291/+442 |
| | |||||
* | SERVER-13519 benchRun doesn't pass through correct documents. | Davide Italiano | 2014-05-22 | 2 | -6/+82 |
| | | | | Signed-off-by: Benety Goh <benety@mongodb.com> |