summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* BUMP 2.2.0-rc1r2.2.0-rc1Eliot Horowitz2012-08-132-2/+2
|
* Revert "Speed-up dur::filename()"Mathias Stearn2012-08-101-16/+5
| | | | | | | This reverts commit 066d794339538fb020ec0fe9a27be981ea75b0a9. Conflicts: src/mongo/db/dur_recover.cpp
* Fix dur::fileName()Mathias Stearn2012-08-101-2/+7
|
* SERVER-4683 Only use embedded tcmalloc on x86_64 linux by default.Andy Schwerin2012-08-101-1/+2
|
* SERVER-4683 Fix build break on older SCons, redux.Andy Schwerin2012-08-101-2/+2
|
* SERVER-4683 Fix build break on older SCons.Andy Schwerin2012-08-101-2/+5
|
* Speed-up dur::filename()Mathias Stearn2012-08-101-5/+11
|
* SERVER-4683 Support the imported tcmalloc, ystem tcmalloc or the default ↵Andy Schwerin2012-08-106-10/+93
| | | | | | | | system allocator library. Pass --allocator=tcmalloc (default on Linux) or --allocator=system (default elsewhere) to control which allocator is used, and --use-system-tcmalloc to use the system- installed tcmalloc instead of the one in the mongo source tree if you use --allocator=tcmalloc.
* SERVER-4683 Config files for tcmalloc on Linux built by 10gen.Andy Schwerin2012-08-103-0/+403
|
* SERVER-4683 Import gperftools source files.Andy Schwerin2012-08-10194-0/+56663
|
* Add libdeps to signatures for built items.Andy Schwerin2012-08-101-10/+0
|
* turn off balancer for error1Greg Studer2012-08-101-1/+1
| | | since the test relies on manual redistribution
* SERVER-6743 Do not add perftest.exe to the distribution archive or install ↵Andy Schwerin2012-08-091-1/+2
| | | | it to /usr/bin.
* Make C++ driver call GLE after storing gridFS chunks, before calling ↵Spencer T Brody2012-08-091-0/+6
| | | | | | filemd5. SERVER-6742 This ensures that there are no pending writebacks from the chunks being inserted.
* bbot fix SERVER-6744Randolph Tan2012-08-091-2/+6
| | | | Modified the test to filter out commands and queries irrelevant to the main test when querying the profiler.
* Make handling of stale configs in ParallelSortClusteredCursor saferSpencer T Brody2012-08-092-9/+12
| | | | by only checking the result object on commands. SERVER-6685 SERVER-6684
* bbot fix for SERVER-6740Randolph Tan2012-08-091-4/+0
|
* Revert "SERVER-6076 implement loopCommands for benchRun"Siddharth Singh2012-08-093-30/+2
| | | | This reverts commit 02ec29038e81588c29cd463fa5e6610c23f20fae.
* Revert "SERVER-6738 exclude bench_test4 from parallel suite"Siddharth Singh2012-08-091-1/+0
| | | | This reverts commit ea9d4e5c7451b25ac92bb00fa634f97116fdbe50.
* fix dbadmin.js on WindowsEric Milkie2012-08-091-1/+3
| | | | | | The after uptimeEstimate is typically "4" on Windows, and might sometimes be "3", which fails the test. Hopefully uptimeEstimate will be removed entirely, soon.
* SERVER-6738 exclude bench_test4 from parallel suiteSiddharth Singh2012-08-091-0/+1
|
* SERVER-6572 - use pthread specifics on os x for performanceEliot Horowitz2012-08-092-7/+45
|
* SERVER-5373 disable jstests/profile1.js for WindowsTad Marshall2012-08-081-0/+12
|
* SERVER-6572 fix Windows warningTad Marshall2012-08-081-1/+1
| | | | | | | Explicitly make the target of the bit shift 'long long' to avoid MSVC warning: "src\mongo\db\record.cpp(242) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?)".
* SERVER-6572 - fix windowsEliot Horowitz2012-08-081-2/+2
|
* SERVER-6572 - can't use enum on windowsEliot Horowitz2012-08-081-16/+13
|
* SERVER-6572 - don't use a class so we can use simple thread localsEliot Horowitz2012-08-081-74/+77
|
* SERVER-6076 implement loopCommands for benchRunSiddharth Singh2012-08-083-2/+30
|
* SERVER-6718 initialize member variable to intended defaultEric Milkie2012-08-081-2/+4
|
* SERVER-6572 use a thread local cache for better perforamnce in record cachingEliot Horowitz2012-08-081-5/+126
| | | | needs work on os x
* Revert "SERVER-6572 use a thread local cache for better perforamnce in ↵Andy Schwerin2012-08-081-76/+2
| | | | | | record caching" This reverts commit f7fdee2e22b37c20a2999fe579111f0fb1f5eb91.
* Check result object of command for stale config in ↵Spencer T Brody2012-08-081-0/+11
| | | | ParallelSortClusteredCursor. SERVER-6684 SERVER-6685
* SERVER-6572 use a thread local cache for better perforamnce in record cachingEliot Horowitz2012-08-081-2/+76
| | | | needs work on osx
* SERVER-6718 new parameter to control replication index prefetching behaviorEric Milkie2012-08-088-9/+127
| | | | | | | | | | | | | | | | New parameter replIndexPrefetch. Settable via the command line or use setParameter() command on a running server. Only valid on a server started with --replSet parameter. This allows a user to disable the prefetching of all index pages prior to the application of a replicated op on a secondary. For most use cases, prefetching all indexes for a given op will provide good performance. For use cases that do many in-place updates to documents in a collection with many indexes that are unaffected by such updates, using the '_id_only' setting may provide better performance than the 'all' setting. The '_id_only' setting only prefetches index pages for the _id index, which will always be used to find the document needed to be updated. The 'none' setting will be used for debugging only; there should be no production use cases for this setting. getParameter() supports getting the current value of this parameter.
* Merge pull request #282 from tychoish/clone-collection-warningIan Whalen2012-08-081-2/+1
|\ | | | | SERVER-6731 cloneCollection warning correction
| * SERVER-6731 cloneCollection warning correctionSam Kleinman2012-08-081-2/+1
| |
* | Merge pull request #283 from samantharitter/SERVER--6708Ian Whalen2012-08-081-12/+6
|\ \ | | | | | | SERVER-6708 sh._adminCommand is silent and sh helpers return result obj
| * | SERVER--6708 sh._adminCommand is silent, and sh helpers return result objectSamantha Ritter2012-08-081-12/+6
| | |
* | | Merge pull request #280 from samantharitter/SERVER-6474Ian Whalen2012-08-082-0/+19
|\ \ \ | |_|/ |/| | SERVER-6474 give better error messages when syncFrom is misused
| * | SERVER-6474 give more descriptive error messages when syncFrom is misusedSamantha Ritter2012-08-012-0/+19
| |/
* | SERVER-6704 show error message on failed "edit var" in shellTad Marshall2012-08-081-2/+3
| | | | | | | | | | Display the JavaScript error and the line we tried to execute when we fail to assign back to the variable in the mongo shell's edit command.
* | Buildbot fix for SERVER-6702Randolph Tan2012-08-074-16/+20
| | | | | | | | Make sure to turn journaling on if we are going to kill a mongod process with SIGKILL with an expectation that it will be running fine after a restart on our tests.
* | SERVER-6729 adapt test to changed database naming rulesTad Marshall2012-08-071-1/+1
| | | | | | | | | | We now allow * and ? in database names on Linux, so we can't use them to test our testing.
* | SERVER-6729 extra restrictions on db name characters for Windows onlyEric Milkie2012-08-071-0/+6
| |
* | Fix test to wait for the master's POV to catch upKristina2012-08-071-3/+16
| |
* | SERVER-6559 do not segfault parsing collection nameTad Marshall2012-08-071-2/+2
| | | | | | | | | | Rework two lines of code to not crash on missing periods in namespace names being checked for correctness.
* | SERVER-6532 Add PDB for mongos and mongod to Windows dist archive.Andy Schwerin2012-08-072-0/+5
| |
* | SERVER-5064 don't return false in auth unless all config servers are downMathias Stearn2012-08-073-8/+112
| | | | | | | | written by greg
* | SERVER-6516, SERVER-6581 adapt shard_gle_insert.js to changed stringsTad Marshall2012-08-071-1/+6
| | | | | | | | | | | | | | | | The "err" strings sent for socket exceptions have been enhanced, but jstests/sharding/shard_gle_insert.js was expecting the old strings. Different OSes report different errors on socket failures, so just require that they begin with "socket exception" and don't check the rest of the message.
* | Compile when SIGPIPE is not definedTad Marshall2012-08-061-0/+2
| |