summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* BUMP 3.1.8r3.1.8Ramon Fernandez2015-09-141-1/+1
|
* Revert "SERVER-19564: Vectorize index write"Ramon Fernandez2015-09-144-56/+25
| | | | This reverts commit 53559aaf23d0ae44c5ea4205b3441f5873ce6c4d.
* SERVER-19564: Vectorize index writeMartin Bligh2015-09-144-25/+56
|
* SERVER-20398 Remove 'TwoHostResponses' from the multi host query unit-test suiteKaloian Manassiev2015-09-141-29/+3
|
* SERVER-20381 Only wait for first node to reach steady state in csrs upgrade ↵Spencer T Brody2015-09-142-10/+16
| | | | tests
* SERVER-20292: fix name of jira-python package in evergreen configurationSam Kleinman2015-09-141-1/+1
|
* SERVER-20394 Remove non-integer test case from iteration_count_control.jsAndreas Nilsson2015-09-141-2/+0
|
* SERVER-19428 Improve KMIP SSL error messagesAndreas Nilsson2015-09-141-2/+2
|
* SERVER-20347 $in containing a regex element cannot use a hashed indexDan Pasette2015-09-142-1/+24
|
* SERVER-18908: Write secondary oplog as a vectorMartin Bligh2015-09-141-15/+5
|
* SERVER-18273 Copy TestData to avoid aliasing issuesCharlie Swanson2015-09-141-1/+1
|
* Revert "SERVER-18899 - Add beginBackup and endBackup to storage API"David Hows2015-09-1411-273/+81
| | | | This reverts commit e1d7404eae3a2c33fa4f15105b931f17d0c3d502.
* SERVER-18899 - Add beginBackup and endBackup to storage APIDavid Hows2015-09-1411-81/+273
|
* SERVER-20035: Move attaching results to post phasedalyd2015-09-131-3/+3
|
* SERVER-18849 SERVER-20194 Temporary fix for a circ. dependency in s/Jason Rassi2015-09-111-1/+19
| | | | | | | Temporarily addresses a libmongoscore <=> libcluster_query circular dependency by library-izing store_possible_cursor.cpp with the 'incomplete' LIBDEPS tag. When CursorCache is deleted, this tag can be removed.
* SERVER-20267 Move runExplain() to Strategy to fix circular dependencyJason Rassi2015-09-115-49/+57
| | | | | | | | | | libmongoscore intentionally depends on libcluster_query, but prior work for SERVER-20267 introduced a call to Strategy::commandOp() (libmongoscore) from ClusterFind::runExplain() (libcluster_query), which created a two-cycle. This issue is addressed by moving ClusterFind::runExplain() to Strategy::explainFind().
* SERVER-19941 enable tcmalloc ServerStatusSection by defaultMathias Stearn2015-09-111-1/+1
|
* SERVER-20384 Add simplified interface to perform an action on commit or rollbackMathias Stearn2015-09-113-46/+56
|
* SERVER-20381 csrs upgrade tests should wait for former SCCC node to be in ↵Spencer T Brody2015-09-112-0/+10
| | | | steady state after being restarted in CSRS mode
* SERVER-20035: Update perf_regresison_check.py script to output report.json ↵dalyd2015-09-112-7/+36
| | | | summarizing results
* bump tools to 3.1.8Ramon Fernandez2015-09-111-2/+2
|
* SERVER-20379 less pessimistic ASIO Connection PoolJason Carey2015-09-111-3/+1
| | | | Don't fail requests/connections on indicateFailed
* SERVER-20270 SERVER-20294 Make sure to update ShardRegistry's ↵Spencer T Brody2015-09-111-2/+6
| | | | _configServerCS on CSRS membership changes
* SERVER-4588 Add option to $unwind stage to include array index in outputCharlie Swanson2015-09-114-61/+287
| | | | | | | | | | | Adds a includeArrayIndex option to the $unwind stage. If this option is specified, the $unwind stage will output values with the structure {index: <array index>, value: <array value>} instead of just the array value. Note this does not affect the behavior non-arrays or empty arrays. If includeArrayIndex and preserveNullAndEmptyArrays are both specified, values from a non-empty array will have an index attached, and all other values will pass through unchanged.
* SERVER-20168 Add option to $unwind stage for treatment of nullish valuesCharlie Swanson2015-09-115-167/+390
| | | | | | | | | Adds a preserveNullAndEmptyArrays option to the $unwind stage. If this option is specified, the $unwind stage will allow documents with nullish values for the specified unwinding path, or those with an empty array as the value for that path, to pass through unaltered. Note this does not affect the behavior of non-nullish, non-array values.
* SERVER-20161: allow capped collection insert notifier to externally notifiedScott Hernandez2015-09-112-1/+25
|
* SERVER-20348 make AsyncMockStreams fully asynchronoussamantharitter2015-09-112-36/+54
|
* SERVER-19836 Fix role change due to priority takeover.Siyuan Zhou2015-09-114-6/+29
|
* SERVER-20330 sharding.configsvrMode option not recognized when specified in ↵Randolph Tan2015-09-111-1/+1
| | | | yaml file
* SERVER-20286: Also check/update size storer when doing non-full validateGeert Bosch2015-09-112-11/+12
|
* SERVER-19551 Oplog stones.Max Hirschhorn2015-09-1112-87/+1069
| | | | | | Keep "milestones" against the oplog to efficiently remove the old records using WT_SESSION::truncate() when the collection grows beyond its desired maximum size.
* SERVER-19564: Use write vectors for the "non-command" path of insertMultiMartin Bligh2015-09-116-85/+215
|
* Import wiredtiger-wiredtiger-2.6.1-1056-g5205bb1.tar.gz from wiredtiger ↵Michael Cahill2015-09-11101-2349/+4347
| | | | branch mongodb-3.2
* SERVER-20327 Don't check index catalog when recording usage statsJames Wahlin2015-09-101-4/+4
|
* SERVER-19841: Fix unsafe global loop vars in jsKevin Pulo2015-09-103-6/+6
|
* SERVER-20335 Mongos now forwards batchSize of none instead of 0Yunhe (John) Wang2015-09-103-3/+8
| | | | | | Closes #1018 Signed-off-by: David Storch <david.storch@10gen.com>
* SERVER-18384 Check concurrent election in signalPrimaryUnavailable.Siyuan Zhou2015-09-101-0/+6
|
* SERVER-20271 Add election delay after seeing a new termSiyuan Zhou2015-09-107-9/+73
|
* SERVER-20194 SERVER-18849 add support for querying SCCC mode config servers ↵David Storch2015-09-109-103/+247
| | | | in the new mongos query path
* SERVER-20338 Determine the default read preference mode based on the value ↵Misha Tyulenev2015-09-101-1/+5
| | | | of the slaveOk flag in mongos
* SERVER-18498 Make election_not_blocked.js use protocol version 0 explicitly.Siyuan Zhou2015-09-101-1/+3
|
* Revert "SERVER-20339 Make NetworkInterfaceASIO the default"Charlie Swanson2015-09-101-1/+1
| | | | This reverts commit fd44eece05d294ba3a3220ce750fb713adb0b66f.
* Revert "SERVER-20180 Include which kind of process logged a message in test ↵Charlie Swanson2015-09-102-67/+73
| | | | | | output" This reverts commit ed3c15504d8d5b6afaac95a6f5bbf4742fe51092.
* SERVER-18272 Fix ssl_fips.jsCharlie Swanson2015-09-101-2/+4
|
* SERVER-20322 Fixup lint from last push.Alex Gorrod2015-09-101-1/+1
|
* SERVER-20339 Make NetworkInterfaceASIO the defaultJason Carey2015-09-091-1/+1
| | | | switch from the threadPool impl to the ASIO impl
* SERVER-20322 Use a separate session when creating new indexes in WiredTiger.Alex Gorrod2015-09-101-1/+3
|
* SERVER-20294 Update ShardRegistry on-demand on changes to shard replica set ↵Spencer T Brody2015-09-096-58/+72
| | | | membership
* SERVER-19769 Pessimize Connection Pool ASIO testJason Carey2015-09-091-1/+1
| | | | | | The Connection Pool ASIO integration test assumes 10 threads can spin up and queue requests at once. On slower hosts they can't, so we should just verify that fewer than 10 connections were spawned.
* SERVER-20045 BF-1133 use easy_install since some platforms don't work well ↵Robert Guo2015-09-091-1/+2
| | | | with pip