summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-28485 Disable implicit shardCollection after drop on OS Xr3.5.5Eddie Louie2017-03-241-3/+5
|
* SERVER-28479 Canonicalize process names to lowercase in hang analyzer.Max Hirschhorn2017-03-241-0/+4
|
* SERVER-26315 Modify comments for blacklisted mr_undef.js file to refer toEddie Louie2017-03-241-1/+2
| | | | correct SERVER ticket
* SERVER-28489 MockStream hook methods may still be used if the stream gets ↵samantharitter2017-03-241-2/+2
| | | | canceled
* SERVER-28489 Add documentation to mock stream frameworksamantharitter2017-03-241-0/+59
|
* SERVER-28486 backup_restore.js waits for FSM and CRUD operations to complete ↵Benety Goh2017-03-241-2/+18
| | | | before getting primary
* SERVER-27727 Dump raw stacks to a file so we have them if we need themMathias Stearn2017-03-241-3/+20
|
* SERVER-27727 Note location where thread is marked idleMathias Stearn2017-03-2432-48/+55
|
* SERVER-27727 Hide idle threads in hang analyzer (extras)Mathias Stearn2017-03-2429-199/+100
|
* SERVER-27727 Hide idle threads in hang analyzer (core only)Mathias Stearn2017-03-248-3/+143
|
* SERVER-28291 use frame.pc() rather than frame.name() for stack dedupingMathias Stearn2017-03-241-4/+4
|
* SERVER-27727 Make threadName a native thread_local so debuggers can get to itMathias Stearn2017-03-2414-87/+105
|
* SERVER-27834 disable implicit collection creation in IndexBuilderBenety Goh2017-03-241-16/+3
|
* SERVER-27834 FeatureCompatibilityVersion creates the admin.system.version ↵Benety Goh2017-03-241-0/+13
| | | | | | collection if missing. This avoids relying on the implicit collection behavior in IndexBuilder.
* SERVER-27834 applyOperation_inlock() fails index creation if collection is ↵Benety Goh2017-03-242-0/+51
| | | | missing
* SERVER-28347 enforce storage depth limit for user documentsKyle Suarez2017-03-2411-49/+661
| | | | | | | Introduces a nesting depth limit for document storage, which is lower than the hard limit for general BSONObjects. Users cannot insert documents exceeding this limit, nor can they update a document to exceed it.
* SERVER-22954 Do not call into the MMAPV1 storage engine on the recipient shardKaloian Manassiev2017-03-242-29/+23
| | | | | | | | | Removes direct calls into MMAPV1 at migration flush time and replaces them with waitForWriteConcern which takes care of non-durable storage engines as well. As a side effect this also removes the last acquisition of the global S lock during chunk migrations.
* SERVER-28204 added build variant for Rollback 3.4 Enterprise RHEL 6.2Benety Goh2017-03-231-0/+110
|
* SERVER-28204 added server parameter to select between 3.4 and 3.6 rollback ↵Benety Goh2017-03-233-60/+135
| | | | | | implementations This server parameter is set to use the 3.6 implementation as the default.
* Revert "SERVER-28400 Firefox ESR 45.8.0"Mark Benvenuto2017-03-2389-1588/+811
| | | | This reverts commit 41d56f108e341c88fe26632084d6140ea75813c0.
* SERVER-28353 make ARS actually interruptible from the deadline on the ↵Esha Maharishi2017-03-232-46/+56
| | | | OperationContext
* SERVER-28204 added Rollback interface and 3.6 implementationBenety Goh2017-03-235-0/+844
| | | | This is a stub implementation of the new 3.6 rollback algorithm.
* SERVER-28204 added RollbackTest fixtureBenety Goh2017-03-2310-58/+308
|
* SERVER-28400 Firefox ESR 45.8.0Mark Benvenuto2017-03-2389-811/+1588
|
* Revert "SERVER-19019 prohibit mapReduce on system collections"Kyle Suarez2017-03-233-49/+3
| | | | | This reverts commits dea0ff9c2f1dd175aabce90a41c8e4d50e282401 and e9926e58d9f533e43ea43ca3f325d3baecf61276.
* SERVER-19019 use runCommand to avoid resharding after drop in sharded ↵Kyle Suarez2017-03-232-3/+7
| | | | passthrough
* SERVER-26315 Override DBCollection.prototype.drop to re-shard collections ↵Eddie Louie2017-03-23248-58/+1096
| | | | | | that are dropped This reverts commit fb956b3b0a48c9b8376575c6adb971a4e0593292.
* Revert "SERVER-26315 Override DBCollection.prototype.drop to re-shard ↵Randolph Tan2017-03-23248-1096/+58
| | | | | | | | | collections that are dropped" This reverts commit 56e66454d14e16689331672734ecde7644a41c78. Conflicts: buildscripts/resmokeconfig/suites/sharded_collections_jscore_passthrough.yml
* SERVER-28415 Run thread backtrace before loading Python modules in ↵Jonathan Abrahams2017-03-231-1/+10
| | | | hang_analyzer.py on ARM platform
* SERVER-27786 Implement _computeOperationTimeJack Mulrow2017-03-236-17/+127
|
* SERVER-28430 Expose dropConnections() method on ConnectionPool through the ↵Judah Schvimer2017-03-236-0/+22
| | | | NetworkInterface
* SERVER-19019 prohibit mapReduce on system collectionsKyle Suarez2017-03-232-1/+43
|
* SERVER-21538 Use mockable cv wait in background_thread_clock_source_testMathias Stearn2017-03-223-35/+55
| | | | | This both makes the test run much faster and avoids spurious failures when the system scheduler decides not to run a thread for over a second.
* SERVER-28421 Implement ClockSource::waitForConditionUntil()Mathias Stearn2017-03-224-55/+128
|
* SERVER-27439 Large queries can omit comment in currentOpBernard Gorman2017-03-226-23/+173
|
* Revert "SERVER-26025 Smart pointer with clone on copy"Randolph Tan2017-03-2212-1803/+0
| | | | This reverts commit 5d141bce7219aeb34d3de8cfae68d643bf9a3a16.
* SERVER-27083 Refactor ReplicationCoordinatorImpl to eliminate topoMutex.Matthew Russotto2017-03-2212-422/+295
|
* SERVER-27681 Remove duplicated ShardKeyPattern functionality from ↵Kaloian Manassiev2017-03-227-178/+164
| | | | CollectionMetadata
* SERVER-28181 Fix the deadlock in OplogFetcher's constructor.Siyuan Zhou2017-03-221-7/+7
|
* SERVER-26025 Smart pointer with clone on copyADAM David Alan Martin2017-03-2212-0/+1803
| | | | | | | This clonable pointer works like a unique_ptr, but upon copy it invokes a customizable cloning function. A `clone` member function is used by default. There exist several customization points.
* SERVER-28294 Host CollectionUUID on top of standalone UUID librarysamantharitter2017-03-228-157/+28
|
* SERVER-28294 Add a standalone UUID library to utilitiessamantharitter2017-03-225-0/+460
|
* SERVER-28101 Remove usages of fast count in zbigMapReduce.jsKaloian Manassiev2017-03-221-2/+2
|
* SERVER-28310 fix mongos count command error reporting to include details in ↵David Storch2017-03-222-11/+16
| | | | errmsg field
* SERVER-28219 Extend OplogBufferCollection so that it can be initialized ↵Judah Schvimer2017-03-228-22/+746
| | | | using the contents of an existing collection
* SERVER-9609 Ensure users can only call getMore on cursors they createdTess Avitabile2017-03-2228-24/+549
|
* SERVER-28425 fix QueryPlannerAccess invariantDavid Storch2017-03-221-1/+1
|
* SERVER-28107 augment command result with operationTime in mongosMisha Tyulenev2017-03-2213-23/+283
|
* SERVER-19677 Add support for running the intel decimal library testAndrew Morrow2017-03-225-4/+68
|
* SERVER-26113 explain() for aggregation request does not propogate to ↵Nick Zolnierz2017-03-213-5/+33
| | | | | | | | | | | | corresponding 'QueryRequest' Small change to bug fix, and adding explain.js test. Formatting changes Missed formatting Incorporating CR feedback