summaryrefslogtreecommitdiff
path: root/jstests/sharding/features3.js
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-49996 Ensure getSiblingDB() is used instead of getSisterDB()Pavi Vetriselvan2020-08-171-1/+1
|
* SERVER-46067 Replicate Before Journaling interface changesDianna Hohensee2020-02-121-3/+0
| | | | | | | | | flushAllFiles takes callerHoldsReadLock in order to skip taking a write lock to update the truncate point. waitUntilDurable takes skipJournalListenerUpdate to know to skip updating the truncate point. getToken takes a defer_lock and opCtx so collection locks can be locked prior to locking the mutex. Remove inactive 'async' field from fsync command. Put explicit dummy value for inactive (since MMAP) 'numFiles' result field in fsync command. Put explicit dummy value for inactive (since MMAP) 'fsyncFiles' result field in write concern.
* SERVER-43006 Unblacklist last_stable_mongos_and_mixed_shards tests now that ↵Bernard Gorman2019-08-231-1/+1
| | | | 4.2 is last-stable
* SERVER-42773 Replace uses of the assert.writeOK() Javascript assertion with ↵James Wahlin2019-08-141-1/+1
| | | | assert.commandWorked()
* SERVER-41772 Apply clang-format 7.0.1 to the codebaseclang-format-7.0.12019-07-271-137/+136
|
* SERVER-16917 Add totalSize field to dbStats and collStatsMaria van Keulen2019-06-281-0/+1
| | | | This commit also removes the now obsolete numExtents field.
* SERVER-32052 Update ShardingTest to default to starting shard servers as ↵jannaerin2018-03-091-4/+4
| | | | replica sets
* SERVER-26109 Propagate MongoS information in client_metadata documentsMark Benvenuto2017-10-121-4/+8
|
* SERVER-28575 Profile entry for update/delete should contain entire raw ↵Tess Avitabile2017-05-231-1/+1
| | | | update/delete
* SERVER-22468 Format JS code with approved style in jstests/Jonathan Abrahams2016-03-091-128/+128
|
* SERVER-22027 Sharding should not retry killed operationsKaloian Manassiev2015-12-301-17/+16
| | | | | | This change introduces a different interruption code (11602) which will be used to kill operations during replication primary stepdown so the config server retry logic can differentiate them from user-killed operations.
* Revert "SERVER-22027 Sharding should not retry killed operations"Kaloian Manassiev2015-12-301-15/+17
| | | | This reverts commit 5d2d6e209acd862324612c7f9c41d65940f8dcba.
* SERVER-22027 Sharding should not retry killed operationsKaloian Manassiev2015-12-301-17/+15
|
* SERVER-21050 Cleanup ReplSetTestKaloian Manassiev2015-12-081-16/+22
| | | | | | This is just a cleanup work to hide some of the private state of ReplSetTest so it is easier to encapsulate and add new logic. Also enables strict mode.
* SERVER-21186 Make all sharding tests use default verbosity of 1Kaloian Manassiev2015-11-111-3/+1
| | | | | | | | | The default ShardingTest verbosity is currently zero, but we have many tests, which bump it to 1 and even higher. Since verbosity level of 0 is sometimes insufficient for investigating transient failures, this change makes the default to be 1 and removes all places, which explicitly make it 1 or higher.
* SERVER-21009 Get rid of some unused/unnecessary methods in ShardingTestKaloian Manassiev2015-10-271-5/+3
| | | | | Removes shardGo in lieu of shardColl and removes setBalancer because it duplicates functionality, which is already in sh.
* SERVER-20591 fix jstests/sharding/features3.js testcase to use find command ↵Misha Tyulenev2015-09-241-4/+1
| | | | in queries
* SERVER-20194 use the new mongos query path by default for legacy ↵David Storch2015-09-221-0/+3
| | | | | | | OP_QUERY/OP_GET_MORE reads Explicitly configures yet-to-be-debugged tests to use the old mongos query path by setting useClusterClientCursor=false.
* SERVER-18868 Check the exit code of the parallel shell.Max Hirschhorn2015-06-231-12/+8
| | | | | By default the await function returned by startParallelShell() asserts that the exit code is zero.
* SERVER-18044 Make sharding test explicitly set primary shards for databasesRandolph Tan2015-05-151-0/+1
|
* SERVER-17971 Remove separateConfig option from ShardingTest and make its ↵Spencer T Brody2015-04-141-2/+1
| | | | behavior the default
* SERVER-14143 Re-enable javascript interruption.Spencer T Brody2014-12-011-4/+0
| | | | | | This restores the behavior from 2.6 to interrupt server-side javascript contexts, but doesn't fix the existing bugs with it due to multiple javascript scopes being associated with a single opId and opIds changing between getMore calls.
* SERVER-13635: update many sharding tests to work with other storage enginesEliot Horowitz2014-10-111-2/+4
|
* SERVER-14745 Remove WritebackListenerRandolph Tan2014-08-061-23/+0
|
* SERVER-14069 Temporarily disable interrupting JS codeMathias Stearn2014-06-031-0/+4
| | | | SERVER-14143 Will reenable it
* SERVER-13425 migrate sharding jstest suite to use write commands apiRandolph Tan2014-04-211-2/+3
|
* SERVER-10247 Correctly check access denied failure in sharding/features3.jsAndy Schwerin2013-07-181-1/+1
|
* SERVER-9695 fix racy testEric Milkie2013-05-171-2/+2
|
* SERVER-8794: use a dedicated config server for features3.js and add debug outputBen Becker2013-03-051-3/+8
|
* SERVER-8794: clean up features3.js to make it easier to understandBen Becker2013-03-051-107/+120
|
* SERVER-7376 migrate deletion not aggressive enough and tied to migrate movesRandolph Tan2012-12-111-1/+2
| | | | Put back dfb8e2604409e2879ea975c4c49ba6ffde90d795 and fixed tests.
* try to make features3 more reliableEliot Horowitz2012-06-231-5/+7
|
* buildbot features3.js disable balancer if doing manual chunk moveGreg Studer2012-06-191-0/+7
|
* make features3 curop test more resilient of timingEliot Horowitz2012-03-261-3/+7
|
* make error reporting better in jstests/sharding/features3.jsEliot Horowitz2012-03-261-2/+2
|
* SERVER-4194 suppress writebacklisten in db.currentOp() unless $all is setEliot Horowitz2012-03-021-0/+24
|
* don't duplicate ns entry for non-sharded collections via mongos SERVER-3539Eliot Horowitz2011-08-081-0/+8
|
* protect against errors on js scope cleanup - features3.jsgregs2011-07-251-17/+34
| | | | Also reduce # of race conditions in features3.js
* put indexSizes and other missing fields in sharded collstats SERVER-2752Eliot Horowitz2011-03-311-0/+2
|
* don't use double quotes in startParallelShellAaron2010-12-291-1/+1
|
* trying to make feature3 more reliableEliot Horowitz2010-09-191-2/+3
|
* debugging for shardign/features3Eliot Horowitz2010-08-301-3/+7
|
* increase allowable kill timeEliot Horowitz2010-08-261-1/+1
|
* some debugging for random features3 failuresEliot Horowitz2010-08-251-0/+3
|
* test debuggingEliot Horowitz2010-08-241-3/+3
|
* try to make test more robustEliot Horowitz2010-07-251-1/+1
|
* SERVER-1418 Shard names now use padding zeroesAlberto Lerner2010-07-211-2/+2
|
* timing tests don't workEliot Horowitz2010-07-141-1/+1
|
* don't allow fsync+lock/unlock through mongos fsync by itselfis ok SERVER-932Eliot Horowitz2010-07-141-0/+9
|
* killOp and currentOp work sharded SERVER-931Eliot Horowitz2010-07-141-0/+77