summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* SERVER-26062 Default to one initial sync attempt in replicaset tests and ↵Judah Schvimer2016-09-152-16/+40
| | | | replication passthroughs
* SERVER-25268 changed OplogBuffer::pushAllNonBlocking to return void instead ↵Benety Goh2016-09-157-13/+9
| | | | of bool
* SERVER-26095 fix error message in ShardingTest::awaitBalancerRoundDianna Hohensee2016-09-151-4/+9
|
* SERVER-26033 Allow simple range to exclude start keyJudah Schvimer2016-09-1538-251/+411
|
* SERVER-26089 Remove incorrect assertion from migration commitKaloian Manassiev2016-09-142-80/+47
| | | | | Enables the bulk_shard_insert.js test in the continuous stepdown suite and removes incorrect assertion from the migration commit code.
* SERVER-26013 Remove default arguments from DistLockManagerKaloian Manassiev2016-09-148-21/+30
| | | | | In addition, restores the default values for merge and split chunk, which were broken as part of commit c62a0d7c882e99d3b255e26ade7baaa0d18244cb.
* SERVER-26013 Remove 'lockTryInterval' parameter from the DistLockManagerKaloian Manassiev2016-09-1410-205/+88
|
* SERVER-24033 Write full index spec in oplog entry for index creation.Max Hirschhorn2016-09-1432-263/+582
| | | | | | | | | | | | | | | This ensures that the index version (aka the "v" field) is always present in the oplog entry when creating indexes on a 3.4 primary. We can therefore assume that if the "v" field isn't present in the corresponding oplog entry, then a v=1 index should be built. Changes MultiBlockIndex::init() to return the index specifications that were actually created. The "repairDatabase", "compact", "copydb", and "cloneCollection" commands no longer automatically upgrade the index version to the current default version. Instead, the only command that does so is the "reIndex" command.
* SERVER-24811 TopologyCoordinator::prepareFreezeResponse returns next action; ↵Benety Goh2016-09-146-43/+98
| | | | error if primary or running election.
* SERVER-26087 make config server only set its own featureCompatibilityVersion ↵David Storch2016-09-141-3/+2
| | | | if all shards report success
* SERVER-26092 make only MongosOptions and MongodOptions depend on ↵Esha Maharishi2016-09-144-6/+13
| | | | AllFailPointsRegistered
* SERVER-24866 Balancer recoveryDianna Hohensee2016-09-1415-238/+666
|
* Revert "SERVER-22688 Provide a setParameter and shell option to control the ↵Waley Chen2016-09-139-48/+13
| | | | | | js heap limit" This reverts commit 955cf8c998a60a8c2a2493dd428dd3d763e90259.
* SERVER-22688 Provide a setParameter and shell option to control the js heap ↵Waley Chen2016-09-139-13/+48
| | | | limit
* SERVER-25688 Allow $bucketAuto to spill to disk.Charlie Swanson2016-09-133-100/+263
|
* SERVER-25950 Improve efficiency of Dependencies::extractFields()Charlie Swanson2016-09-132-20/+25
|
* SERVER-25151 Honor ssl=true/false in URIs in the shellsamantharitter2016-09-138-11/+53
|
* Revert "SERVER-25151 Honor 'ssl' option in URIs passed to the shell"samantharitter2016-09-1323-109/+87
| | | | This reverts commit 7c3878adaf73736c33c7f65b718d8b5705c36142.
* SERVER-24081 fixed explainable count to respect hintMaria van Keulen2016-09-133-30/+37
|
* SERVER-26086 Handle exceptions that occur while running TransportLayer ticketssamantharitter2016-09-131-1/+7
|
* SERVER-26077 Tighten checks around migration session idKaloian Manassiev2016-09-139-110/+108
| | | | | | Transmits the migration session id together with the abort command and ensures that the migration session id reported in the status matches that of the cloner.
* SERVER-26076 Increase timeouts in ReplSetTest to 5 minutesJudah Schvimer2016-09-131-10/+13
|
* SERVER-25151 Honor 'ssl' option in URIs passed to the shellsamantharitter2016-09-1323-87/+109
|
* SERVER-25919 make asio stress test less stressfulMatt Cotter2016-09-131-2/+2
|
* SERVER-23936 insertOne only accepts objectsMatt Cotter2016-09-131-1/+6
|
* SERVER-24811 replSetFreeze should fail if node is primary or running for ↵Benety Goh2016-09-131-0/+9
| | | | election
* SERVER-26067 Fix ViewDefinition access outside of lockJames Wahlin2016-09-131-8/+9
|
* Import wiredtiger: deeb0f589aab43f0d4b8d97755ed1e13808dcfab from branch ↵Alex Gorrod2016-09-133-8/+8
| | | | | | | | | mongodb-3.4 ref: 569c70d13a..deeb0f589a for: 3.3.13 WT-2903 Reduce the impact of checkpoint scrubbing on applications
* SERVER-25918 Operations on closed sessions should return a ↵samantharitter2016-09-1215-76/+97
| | | | TransportSessionClosed status
* SERVER-24153 Add unit tests for DocumentSource pausing behavior.Charlie Swanson2016-09-1223-126/+1048
|
* SERVER-26003 Protect stepdown waiters with _mutex rather than _topoMutex.Siyuan Zhou2016-09-123-60/+53
|
* SERVER-26008 allow setting failpoints on the command lineEsha Maharishi2016-09-1213-63/+341
|
* SERVER-23990 allow parallel oplog application on collection with non-simple ↵David Storch2016-09-121-8/+5
| | | | collation
* SERVER-26041 Use bsonBinaryEqual in checkDBHashesForReplSetJonathan Abrahams2016-09-121-2/+2
|
* SERVER-26047 Assert that fail point is configured successfully in ↵Randolph Tan2016-09-121-0/+5
| | | | write_concern_util.js
* SERVER-26051 sharding_balance3.js should wait longer for initial balancing roundRandolph Tan2016-09-121-1/+1
|
* SERVER-25551 Pass batchSize through to DBCommandCursor in aggregation helperJonathan Reams2016-09-121-1/+4
|
* SERVER-26049 Raise default writeConcern wtimeout in db.js to 5 minutesJudah Schvimer2016-09-121-1/+1
|
* SERVER-25324 Expose a function in the shell to compare BSON at a byte levelJonathan Abrahams2016-09-122-4/+21
|
* SERVER-25734 Add a drain mode completion hook which runs outside of the ↵Kaloian Manassiev2016-09-106-17/+36
| | | | global X lock
* SERVER-22606 add warning for using wiredtiger with ext4Sam Rossi2016-09-091-0/+22
|
* SERVER-25741 Move check for "collation" option into CmdCreate::run().Max Hirschhorn2016-09-092-8/+12
| | | | | The userCreateNS() function is used by replication in the 3.2 codepath for initial sync.
* SERVER-26034 fsync+lock should never see intermediate states of secondary ↵Mathias Stearn2016-09-091-5/+3
| | | | batch application
* SERVER-23990 move BSONObj/BSONElement hashing into ↵David Storch2016-09-0915-151/+453
| | | | {BSONObj,BSONElement}::ComparatorInterface
* SERVER-25926 Fix LintMark Benvenuto2016-09-091-1/+1
|
* SERVER-25926 Windows audit bson output erroneously translates LF to CR LFMark Benvenuto2016-09-092-30/+35
|
* SERVER-25970 mongod with WT does not start on Windows unless dbpath is specifiedMark Benvenuto2016-09-091-9/+10
|
* SERVER-22973 use mongo macros for static assertMatt Cotter2016-09-0953-199/+253
|
* SERVER-26042 Increase the timeout of ShardingTest configuration writesKaloian Manassiev2016-09-091-1/+5
|
* SERVER-26032 Remove unused GlobalLock constructorKaloian Manassiev2016-09-092-4/+0
|