summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* BUMP 2.4.10r2.4.10Ernie Hershey2014-04-022-2/+2
|
* SERVER-13376 Make sync7.js less sensitive to delaysRandolph Tan2014-03-272-9/+20
| | | | (cherry picked from commit 06c40ab0bb2a36c709fb4d3b91961e91fb08b1f1)
* post 2.4.10-rc0Ernie Hershey2014-03-262-2/+2
|
* BUMP 2.4.10-rc0r2.4.10-rc0Ernie Hershey2014-03-252-2/+2
|
* SERVER-13331 lower GridFS default chunk size to 255kTyler Brock2014-03-241-1/+1
| | | | (cherry picked from commit 632ae4e7ad70426d5e2d36bd1fee4491eeac16b7)
* SERVER-13333 Add more info when movePrimary fails in prefix_shard_key.jsRandolph Tan2014-03-241-1/+1
|
* improve replset_remove_node.jsEric Milkie2014-03-211-14/+21
| | | | (cherry picked from commit 38ba557b50281fa8e1680cbaf7681f06942f4130)
* Remove unnecessary and broken portion of testMathias Stearn2014-03-201-16/+0
| | | | | | Fixes SERVER-10153 (cherry picked from commit 85cc36126c772ed5e406bebf68fa24a49e7109c4)
* SERVER-12548 add indexes to distlock collections backportGreg Studer2014-03-202-11/+36
|
* SERVER-13249 adjust timeout for reInitiateEric Milkie2014-03-191-1/+1
| | | | | | Since there is a 15 second polling delay when there are no visible primary/secondary nodes, reInitiate was coming close to timing out in many cases. (cherry picked from commit 4a299302a7312cebb076d0b356c5235c2f45918c)
* SERVER-13249 fix where we set timeout for slow buildersEric Milkie2014-03-191-2/+2
| | | | | awaitSecondaries is already called by reInitiate() (cherry picked from commit eabded8aa6f78949535ed2ad5a2d01d4c3e58ea0)
* SERVER-13249 double timeout for more reliabilityEric Milkie2014-03-181-1/+1
| | | | (cherry picked from commit c2eeebe5c1861b4cbec0a0a2ff180b0adab652cd)
* Revert "SERVER-13033: Fix bad static initializer"Dan Pasette2014-03-171-13/+2
| | | | This reverts commit c991426e46e416dfad3e433995a1bd2725e9b09c.
* SERVER-13033: Fix bad static initializerMark Benvenuto2014-03-171-2/+13
| | | | (cherry picked from commit f0b367f3e04408f66fcc8f5bac1425155deec5c3)
* Increase timeout of replSetReconfig to leave time for initial sync in ↵Spencer T Brody2014-03-172-3/+4
| | | | | | two_initsync.js test (cherry picked from commit 298470d138e0596c0f61fff46cbada3bf402a846)
* Increase benchRun time to improve reliability of bench_test3.jsSpencer T Brody2014-03-171-1/+2
| | | | (cherry picked from commit 689e23eace05079e4db58ea92caff2aafb1c75db)
* update and repair replsets.slavedelay1.jsMatt Dannenberg2014-03-151-41/+20
|
* SERVER-12662: fix index name creationEliot Horowitz2014-03-141-1/+1
|
* SERVEr-12990: interrupted index after interim succesful index kills correct ↵Eliot Horowitz2014-03-141-6/+15
| | | | index
* SERVER-12956: on startup, remove half built indexesEliot Horowitz2014-03-143-0/+32
|
* SERVER-12662: Two background index builds in parallel with unique key ↵Eliot Horowitz2014-03-143-18/+32
| | | | constraint violations crashes secondary
* SERVER-12515 Unable to move hashed shard key chunks created by numInitialChunksRandolph Tan2014-03-112-1/+15
| | | | Backport fix for commit 3a08be3bf2a1a650c97543a448a8ea0c143a89b6
* SERVER-12697 comment out compact.jsDan Pasette2014-03-101-0/+4
|
* SERVER-12908 don't aggressively retry when config inconsistency detected in ↵Greg Studer2014-03-091-0/+1
| | | | balancer
* SERVER-12264 prevent from tryToGoLiveAsSecondary() from waiting on global ↵matt dannenberg2014-03-092-7/+63
| | | | writelock during compact
* SERVER-9248 Fix up try/catch blockDan Pasette2014-03-091-6/+6
|
* SERVER-12170 stop calling relinquish() when replicaset nodes decide not to ↵Matt Dannenberg2014-03-091-1/+0
| | | | veto an election
* SERVER-12132 Stop using stringstream in Value::coerceToString()Mathias Stearn2014-03-091-9/+4
| | | | | | | | | This speeds up the function by two changes: 1) Using StringBuilder (through str::stream) rather than stringstream. 2) Not constructing a StringBuilder or stringstream when not needed. At least with libstdc++, constructing and destructing a stringstream is extremely expensive.
* SERVER-12034 Fix bug with SIGXCPU causing a core dump in mongoD/mongoS.Charlie Page2014-03-092-0/+4
| | | | | | | Graceful shutdown was chosen so we can log the signal; There is no risk of data corruption. Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
* SERVER-11871 Fix assert in Page::Initialize.Mathias Stearn2014-03-091-1/+1
| | | | | This is a clean backport from this commit from V8: https://code.google.com/p/v8/source/detail?r=13896
* SERVER-11560 Close file handle in shell utilShaun Verch2014-03-091-0/+2
|
* SERVER-10793 always step down when another primary is seenEric Milkie2014-03-091-5/+1
|
* SERVER-10231 disallow creation of indexes on system.indexesmatt dannenberg2014-03-093-2/+24
| | | | | | Conflicts: src/mongo/db/index.cpp src/mongo/db/namespacestring.h
* SERVER-9259 Don't move chunks for non-empty hashed collection during ↵Randolph Tan2014-03-091-1/+1
| | | | shardCollection cmd
* SERVER-9248 Ignore errors when checking readaheadDan Pasette2014-03-091-23/+31
| | | | | To test, run sudo chmod o-x /sys/dev/block Manual backport of commit 9501c1bfce47079de54e0aba7b78bae341e3e916
* Do not zero-fill newly allocated files on WindowsKaloian Manassiev2014-03-093-2/+33
| | | | | | On Windows platforms code was added to zero-fill each newly allocated data file in order to work around Windows KB http://support.microsoft.com/kb/2731284. The KB only applies for Windows 7 and Windows 2008 Server installations, so there is no need to do it on each and every system. This fix restricts the zeroing-out code to only versions, which have had the bug. It will not check whether the hot fix has been installed.
* SERVER-8375 sync from primary on clock skewDan Pasette2014-03-091-3/+18
| | | | Manual backport of git commit ebd13ab35a338370a44e3e2891a06d31718f83aa
* SERVER-12914 initAndListen call dbexit if invalid IndexSpec foundJason Rassi2014-03-072-9/+24
|
* SERVER-12175 Reject 2dsphere idxs w/o supported 2dsphereIndexVersionJason Rassi2014-02-152-0/+127
| | | | | Refuse to use/build if 2dsphereIndexVersion index option is set and has any value other than 1.
* Revert "SERVER-12662 do not logOp inserts that have no associated diskloc ↵Eric Milkie2014-02-132-17/+12
| | | | | | | (such as index-already-exists)" This reverts commit 2f3bd6fc8f3b50bf4802f4477c55660355cff9fe. The commit does not work for _id index builds and will require a more comprehensive solution.
* SERVER-12662 do not logOp inserts that have no associated diskloc (such as ↵Eric Milkie2014-02-122-12/+17
| | | | index-already-exists)
* Revert "SERVER-12272 Suppress new GCC 4.8 warning about unused local typedefs"Andrew Morrow2014-02-041-1/+0
| | | | | | | This reverts commit 7fa028e8fa7b961d69769172565791b1dd5caec4. Older GCC doesn't silently ignore attempts to disable warnings it doesn't know about, so -Wno-unused-local-typedefs breaks the build.
* SERVER-12481 fix off-by-one error with IndexBuildsInProgress::removeEric Milkie2014-02-041-1/+2
|
* SERVER-12272 Suppress new GCC 4.8 warning about unused local typedefsAndrew Morrow2014-02-031-0/+1
|
* post 2.4.9Ernie Hershey2014-01-102-2/+2
|
* BUMP 2.4.9r2.4.9Ernie Hershey2014-01-082-2/+2
|
* post 2.4.9-rc0Dan Pasette2013-12-232-2/+2
|
* BUMP 2.4.9-rc0r2.4.9-rc0Dan Pasette2013-12-222-2/+2
|
* SERVER-11494 Reduce fragility of TextIndexVersionCheck1 testJason Rassi2013-12-221-2/+2
| | | | | Constructing FTSSpec from invalid object doesn't (by contract) have to throw derived UserException. Changed test to catch DBException.
* SERVER-11494 Run text index version check at time of text index useJason Rassi2013-12-212-3/+48
|