Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SERVER-17861 Change the default storage engine to wiredTiger. | Max Hirschhorn | 2015-05-26 | 31 | -283/+312 |
| | | | | | | | 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-18635 Update multiversion test to upgrade from 3.0 to 3.1.x. | Max Hirschhorn | 2015-05-26 | 1 | -67/+59 |
| | | | | | Specify the older version as "last-stable" instead of "3.0" to avoid needing to change this test again after the next release. | ||||
* | SERVER-18597 Add support for writing ASan code coverage data on exit | Kamran Khan | 2015-05-26 | 1 | -0/+18 |
| | | | | | | | The coverage data is only written when the appropriate compiler flags are passed (-mllvm -asan-coverage for clang-3.4 and clang-3.5, -fsanitize-coverage for clang-3.6 and clang-3.7) and coverage options are specified in ASAN_OPTIONS. | ||||
* | Fix typo | Mathias Stearn | 2015-05-26 | 1 | -1/+1 |
| | |||||
* | Don't assume storageSize doesn't change in background for all storage engines | Mathias Stearn | 2015-05-26 | 1 | -4/+9 |
| | |||||
* | SERVER-18216 Add term to oplog. | Siyuan Zhou | 2015-05-26 | 24 | -137/+208 |
| | |||||
* | SERVER-18660 Use C++11 final modifiers in accumulator.h | Mathias Stearn | 2015-05-26 | 1 | -35/+35 |
| | |||||
* | SERVER-18527 Rename hidden parameter in sharded map/reduce | Kaloian Manassiev | 2015-05-26 | 1 | -13/+14 |
| | |||||
* | SERVER-18127 Shard class should use ConnectionString for addresses | Kaloian Manassiev | 2015-05-26 | 35 | -176/+195 |
| | | | | | Currently we convert indiscriminately between ConnectionString and std::string. This change unifies all places to use only ConnectionString. | ||||
* | SERVER-18478 Remove lingering unused mutex in AuthzManagerExternalStateLocal | Daniel Alabi | 2015-05-26 | 7 | -29/+8 |
| | | | | | Also removes unused includes in AuthzManagerExternalState* files as a result of recent cleanup | ||||
* | SERVER-17199 Fix source pushes on windows | Jonathan Reams | 2015-05-26 | 1 | -2/+2 |
| | |||||
* | SERVER-18621 Remove concurrency_compat tests for FSM | Jonathan Abrahams | 2015-05-26 | 1 | -56/+0 |
| | |||||
* | SERVER-18634 Move config upgrade code inside CatalogManagerLegacy | Kaloian Manassiev | 2015-05-26 | 15 | -489/+176 |
| | | | | | | | | | | It contains logic, which is specific to the legacy catalog manager and need not be exposed to the rest of the server. Also removes usages of Grid throughout CatalogManagerLegacy and instead threads the catalog manager through the upgrade methods. No functional changes. | ||||
* | Cleanup (merge) | Kaloian Manassiev | 2015-05-22 | 3 | -201/+176 |
| | |||||
* | SERVER-17782 Fix tarball naming in push task | Jonathan Reams | 2015-05-22 | 2 | -4/+4 |
| | |||||
* | SERVER-18277/SERVER-18482 Remove "_remote" field from CurOp. | Andy Schwerin | 2015-05-22 | 9 | -28/+21 |
| | |||||
* | SERVER-18277 Prefer getting CurOp via the OperationContext rather than the ↵ | Andy Schwerin | 2015-05-22 | 8 | -33/+37 |
| | | | | | | | | | Client. Eventually, the CurOp should be a part of the OperationContext. Presently, the only thing that prevents our maintaining that illusion is that ServiceContextMongoD expects to be able to extract the CurOp for each existing Client object, but there is no way to enumerate the OperationContexts for a Client. | ||||
* | SERVER-18328 SERVER-18478 AuthzManagerExternalState for mongos should go ↵ | Daniel Alabi | 2015-05-22 | 9 | -280/+175 |
| | | | | through the catalog manager | ||||
* | SERVER-18589 Cosmetic changes to FindAndModifyRequest | Randolph Tan | 2015-05-22 | 2 | -12/+13 |
| | |||||
* | SERVER-18567 Replace legacy ConnectionString::parse in MongoS startup | Kaloian Manassiev | 2015-05-22 | 2 | -16/+10 |
| | |||||
* | SERVER-6801: Error when aggregation's $substr expression results in invalid ↵ | Charlie Swanson | 2015-05-22 | 2 | -4/+24 |
| | | | | UTF-8 | ||||
* | SERVER-18617 resmoke.py should not error when tearing down fixtures which ↵ | Charlie Swanson | 2015-05-22 | 2 | -2/+2 |
| | | | | had not been set up | ||||
* | SERVER-18481 Fix compile break | Kaloian Manassiev | 2015-05-22 | 1 | -2/+2 |
| | |||||
* | SERVER-18481: Update tcmalloc to free in more friendly way | Martin Bligh | 2015-05-22 | 7 | -41/+33 |
| | | | | | | | | Main changes here are: 1. Free the contents of the cache but don't tear down control structures 2. Use dynamic sizing for when a thread frees memory, not magic constants 3. Remove the global lock 4. Try to make the tcmalloc change acceptable for upstream | ||||
* | SERVER-18569 Standalone ASIO build system integration | Andrew Morrow | 2015-05-22 | 5 | -0/+41 |
| | |||||
* | SERVER-18569 Fix ASIO dev_poll_reactor | Andrew Morrow | 2015-05-22 | 1 | -35/+19 |
| | |||||
* | SERVER-18569 Initial check in of free-standing ASIO 1-11-0 | Andrew Morrow | 2015-05-22 | 476 | -0/+99716 |
| | | | | Excluded docs directory and tests and examples | ||||
* | SERVER-18589 rename remote_command_executor->remote_executor_runner | Randolph Tan | 2015-05-22 | 1 | -1/+1 |
| | |||||
* | SERVER-18589 Implement findAndModify serialization/deserialization | Randolph Tan | 2015-05-22 | 6 | -91/+836 |
| | |||||
* | SERVER-18567 Replace usages of the legacy ConnectionString::parse | Kaloian Manassiev | 2015-05-22 | 17 | -149/+110 |
| | | | | This is all the non-sharding code, which is using it. | ||||
* | SERVER-17782 Fix source tarball pushes | Jonathan Reams | 2015-05-22 | 1 | -1/+2 |
| | |||||
* | SERVER-18445 include bugs/ subdirectory in aggregation suite, remove ↵ | Charlie Swanson | 2015-05-22 | 3 | -18/+2 |
| | | | | test_bugs.js | ||||
* | Revert "SERVER-17861 Change the default storage engine to wiredTiger." | Max Hirschhorn | 2015-05-22 | 18 | -280/+263 |
| | | | | This reverts commit 38862aaa17e06e5e6733598bbb487774cb3616f7. | ||||
* | SERVER-17861 Change the default storage engine to wiredTiger. | Max Hirschhorn | 2015-05-21 | 18 | -263/+280 |
| | | | | | | | 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-18487 Add filter object to getCollectionInfos() shell helper. | Max Hirschhorn | 2015-05-21 | 3 | -24/+37 |
| | |||||
* | SERVER-18600 Avoid giving the same port to multiple processes. | Max Hirschhorn | 2015-05-21 | 1 | -9/+27 |
| | |||||
* | SERVER-18016 fixed race in TaskRunner unit test | Benety Goh | 2015-05-21 | 7 | -54/+203 |
| | |||||
* | SERVER-18035 fixed fetcher wait() to block until fetcher is inactive | Benety Goh | 2015-05-21 | 3 | -40/+63 |
| | |||||
* | SERVER-18599 Increase connection timeout in resmoke.py. | Max Hirschhorn | 2015-05-21 | 3 | -7/+17 |
| | | | | | | | | Change resmoke.py to wait up to 5 minutes for a mongod/mongos process to start accepting connections. Waiting only 30 seconds for a connection to be established is insufficient on some build variants in Evergreen. This is likely due to file preallocation, disk speed, and other resource factors. | ||||
* | SERVER-18557 remove usage of $cmd.findOne from shell and jstests | Adam Midvidy | 2015-05-21 | 4 | -39/+31 |
| | |||||
* | SERVER-18184 add awaitData support to the getMore command for any capped ↵ | David Storch | 2015-05-21 | 5 | -24/+260 |
| | | | | | | collection Previously awaitData for find/getMore commands was only allowed for the oplog. | ||||
* | SERVER-17577 query planner now makes use of separate limit and batchSize ↵ | David Storch | 2015-05-21 | 20 | -137/+372 |
| | | | | fields in find command | ||||
* | SERVER-18616 Rename RemoteCommandExecutor to RemoteCommandRunner | Spencer T Brody | 2015-05-21 | 11 | -39/+39 |
| | |||||
* | SERVER-18587 cleanup ReadPreference and move it to a separate library | Adam Midvidy | 2015-05-21 | 11 | -264/+459 |
| | |||||
* | SERVER-17782 SERVER-17329 Improve versioning and add distsrc to SCons | Jonathan Reams | 2015-05-21 | 13 | -166/+549 |
| | |||||
* | SERVER-18478 Clean up AuthzManagerExternalState | Daniel Alabi | 2015-05-21 | 15 | -854/+614 |
| | | | | Removed insert/remove/update from the AuthzManagerExternalState* interfaces | ||||
* | SERVER-18567 Implement ConnectionString::parse which returns StatusWith | Kaloian Manassiev | 2015-05-21 | 7 | -179/+262 |
| | |||||
* | SERVER-18478 Remove unused update*Credentials and upgradeSchema* from the ↵ | Daniel Alabi | 2015-05-21 | 2 | -176/+0 |
| | | | | AuthorizationManager interface | ||||
* | SERVER-18436 Add mock DistLockManager | Spencer T Brody | 2015-05-21 | 6 | -6/+191 |
| | |||||
* | SERVER-18436 Remove unused parameter from CatalogManager::createDatabase | Spencer T Brody | 2015-05-21 | 4 | -7/+5 |
| |