summaryrefslogtreecommitdiff
path: root/src/mongo
Commit message (Collapse)AuthorAgeFilesLines
* post 2.2.7-rc0Ernie Hershey2014-01-091-1/+1
|
* BUMP 2.2.7-rc0r2.2.7-rc0Dan Pasette2014-01-061-1/+1
|
* SERVER-12146 do not check writebacks if calling gle from wblDan Pasette2014-01-062-33/+38
|
* SERVER-10538 SERVER-11731 change segfault to uassert on improper use of $wherematt dannenberg2013-12-091-0/+2
|
* SERVER-9339 ensure all rollback update/delete paths are recordedEric Milkie2013-08-295-8/+21
| | | | | Conflicts: src/mongo/db/ops/update.cpp
* post 2.2.6Ernie Hershey2013-08-201-1/+1
|
* BUMP 2.2.6r2.2.6Dan Pasette2013-08-181-1/+1
|
* post 2.2.6-rc0Ernie Hershey2013-08-131-1/+1
|
* BUMP 2.2.6-rc0r2.2.6-rc0Dan Pasette2013-08-121-1/+1
|
* SERVER-10458 sanity check before critical section that all cloned docs sentGreg Studer2013-08-121-1/+32
|
* SERVER-10478 fix batch limit check for _cloneLocs in migrationGreg Studer2013-08-121-3/+4
|
* SERVER-10039 buildbot test ChunkManagerLoadBasicTest need index to support ↵Greg Studer2013-07-011-0/+5
| | | | sorting chunks in test
* SERVER-10039 sorting ignored in returned query obj for differGreg Studer2013-07-011-4/+4
|
* SERVER-7588 Improve logic for seconds and milliseconds in ISODate constructorDan Pasette2013-07-011-3/+23
| | | | | | | | Do not use floating point for seconds, only for milliseconds. Adjust other date components when milliseconds round up to 1000. Code backported from Tad Marshall's master branch commit: https://github.com/mongodb/mongo/commit/7cf042ff3e0c97a7fe701cd85f5cdd4c1519179b
* post 2.2.5Dan Pasette2013-06-271-1/+1
|
* BUMP 2.2.5r2.2.5Dan Pasette2013-06-261-1/+1
|
* post 2.2.5-rc0Ernie Hershey2013-06-201-1/+1
|
* BUMP 2.2.5r2.2.5-rc0Dan Pasette2013-06-181-1/+1
|
* SERVER-5351 - fix compile for backportDan Pasette2013-06-141-0/+1
|
* SERVER-5351 migrations should use better slave count to determine up-to-dateRandolph Tan2013-06-131-6/+5
|
* SERVER-6733 lower oplog socket timeout from 10 minutes to 30 secondsEric Milkie2013-06-131-1/+3
|
* SERVER-6947 Do not create undefined fields in db.createCollectionShaun Verch2013-06-031-1/+5
|
* SERVER-9417 assert if we stepDown while waiting to satisfy GLEEric Milkie2013-06-031-2/+9
|
* SERVER-9417 opReplicatedEnough should assert on step downEliot Horowitz2013-06-032-2/+13
| | | | | Conflicts: src/mongo/db/dbcommands.cpp
* Added logging preceding assertion in database.cpp for exceeded quotasAndrewCEmil2013-05-311-0/+1
|
* SERVER-8420 add a tailcheck to detect cursor deadnessEric Milkie2013-05-311-0/+3
|
* SERVER-9808 - use boost/cstdint.h for v2.2Dan Pasette2013-05-311-1/+1
|
* SERVER-9808 Fix issues found in CoN static analysisAndreas Nilsson2013-05-304-7/+10
|
* SERVER-9730 under any circumstances, do not vote yea while a primary ↵Eric Milkie2013-05-221-5/+3
| | | | already exists
* SERVER-7771 WritebackListener thread can die while handling exceptionsRandolph Tan2013-05-191-2/+10
|
* SERVER-8741 make sure we contact from-shard at least once after commitGreg Studer2013-05-191-2/+14
|
* SERVER-9578 install mongos signal handler for SIGUSR1 before spawning any ↵Eric Milkie2013-05-101-2/+2
| | | | | | | threads Conflicts: src/mongo/s/server.cpp
* SERVER-4739 use a thread for logRotate signal instead of a signal handlerEric Milkie2013-04-183-12/+52
|
* post 2.2.4Ernie Hershey2013-04-021-1/+1
|
* BUMP 2.2.4r2.2.4Dan Pasette2013-03-311-1/+1
|
* SERVER-9027: allow dbref shard keysScott Hernandez2013-03-281-3/+24
|
* post 2.2.4-rc0r2.2.4-rc0Dan Pasette2013-03-271-1/+1
|
* BUMP 2.2.4-rc0Dan Pasette2013-03-261-1/+1
|
* SERVER-9124: avoid raw pointers for SM's nativeHelperBen Becker2013-03-251-51/+76
|
* SERVER-8984: gle c++ client helper should check for command failureScott Hernandez2013-03-252-5/+98
|
* SERVER-9095 fix reconfig.js on Windows by removing Client from heartbeat threadEric Milkie2013-03-251-8/+1
| | | | | | The heartbeat thread has no use for a Client context, and it has trouble at process shutdown time -- it tends to hit an access violation on Windows when it tries to destruct the Client context.
* SERVER-6591 Visual Studio -- adapt to renamed and added filesTad Marshall2013-03-238-18/+34
|
* SERVER-9022: command line option for releaseConnectionsAfterResponseDan Pasette2013-03-211-0/+6
|
* SERVER-7034 add 10 second timeouts to three connectionsTad Marshall2013-03-211-2/+4
| | | | | | | | | Change the timeout on three ScopedDbConnections (made while holding a critical section) from default of zero (no timeout) to 10 seconds. Conflicts: src/mongo/s/d_migrate.cpp
* SERVER-7817 Display chainingAllowed option when set to falseDan Pasette2013-03-211-17/+24
|
* SERVER-8172 Exclude $not query operator fields from new upsert document.aaron2013-03-202-3/+23
| | | | | | Conflicts: src/mongo/dbtests/updatetests.cpp
* SERVER-8335 remember _dataWritten for unaffected chunks after partial chunk ↵Greg Studer2013-03-202-0/+7
| | | | manager reload
* SERVER-1606: don't duplicate update namesEliot Horowitz2013-03-203-21/+68
| | | | | | Conflicts: src/mongo/dbtests/updatetests.cpp
* SERVER-8167 make units more accurateGreg Studer2013-03-202-6/+6
|
* SERVER-8456: use CursorHolder to avoid auto_ptr::releaseBen Becker2013-03-202-12/+10
|