summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-63102 Introduce internalQueryPlanEvaluationWorksSber5.3.0-alpha3David Storch2022-02-099-32/+80
| | | | | | The 'internalQueryPlanEvaluationWorks' parameter now only affects the classic engine. The newly added parameter has similar behavior, but applies only to queries using SBE.
* SERVER-63432 use s3.put for debugsymbolsJon Streets2022-02-091-6/+4
|
* SERVER-61973 Remove unnecessary TODOs that reference SERVER-40224Matt Diener2022-02-092-2/+0
|
* SERVER-58875 Implement optimization for $setEquals expressionRui Liu2022-02-092-16/+69
|
* SERVER-63107 Remove resmoke_jobs_max=1 from sharding_clustered_collections ↵Haley Connelly2022-02-091-2/+0
| | | | in evergreen.yml
* SERVER-56974 Enable feature flag for PM-2311Jordi Olivares Provencio2022-02-0931-155/+27
|
* SERVER-63286 Ensure `CollectionUUIDMismatch` from `createIndexes` and ↵Gregory Noma2022-02-094-2/+155
| | | | `dropIndexes` commands does not omit the actual collection even if unsharded
* SERVER-63141 Ensure stages without dependency tracking are not cached in $lookupAlya Berciu2022-02-093-5/+108
|
* SERVER-63180 Add column_store.h skeletonIan Boros2022-02-094-1/+563
|
* SERVER-63214 Ignore hash inconsistency between whole dbs when collection ↵Jason Chan2022-02-091-0/+10
| | | | hash mismatch between image collections
* SERVER-60939 Reenable pipeline_length_limit.js testJames Wahlin2022-02-091-3/+0
|
* SERVER-63475 Avoid testing clustered capped collections if test commands are ↵Jordi Olivares Provencio2022-02-091-1/+8
| | | | disabled
* SERVER-58694 Implement writing of pre-images for transactional ↵Mindaugas Malinauskas2022-02-0934-67/+925
| | | | update/replace/delete operations
* SERVER-63340 Add --loadShedding server parameterJosef Ahmad2022-02-092-0/+8
|
* SERVER-63298 Fix defragment_large_collection.js execution in stepdown suitePaolo Polato2022-02-095-26/+20
|
* Revert "SERVER-63180 Add column_store.h skeleton"auto-revert-processor2022-02-094-563/+1
| | | | This reverts commit 3808d2b2dbe11d15b1d858dcfb2276487c708afb.
* SERVER-63391 Add a $match to filter out newly added events when ↵Arun Banala2022-02-098-170/+394
| | | | 'showExpandedEvents' is false
* Revert "SERVER-56974 Enable feature flag for PM-2311"auto-revert-processor2022-02-0931-27/+155
| | | | This reverts commit 048b9683575473b335ffce45093cc4ab7f03616b.
* SERVER-60112 Relax argument types of profile and replSetResizeOplogJordi Olivares Provencio2022-02-092-3/+3
|
* SERVER-63186 Add AES-CTR support for OpenSSLsergey.galtsev2022-02-094-3/+131
|
* SERVER-63278: Use LogicalTime for clusterParameterTimeVarun Ravichandran2022-02-096-24/+25
|
* SERVER-63433 Fix getApproximateSize() for ShardFiltererImpl and ShardKeyPatternDrew Paroski2022-02-082-4/+4
|
* SERVER-63010 Ensure that unpacking measurements doesn't overwrite pushdown ↵Matt Boros2022-02-086-156/+428
| | | | addFields that are computed on meta data
* SERVER-63180 Add column_store.h skeletonIan Boros2022-02-084-1/+563
|
* SERVER-62229 Allow applying index build abort entry when in ↵Pavi Vetriselvan2022-02-081-1/+2
| | | | recoverFromOplogAsStandalone mode
* SERVER-63317 Basic plan generation for columnar indexesIan Boros2022-02-0811-4/+126
|
* SERVER-62343 Create Feature flag for Global Index MetricsLuis Osta2022-02-081-0/+4
|
* SERVER-62795 Bind values for parameterized queries in SBE RuntimeEnvironmentDavid Storch2022-02-0813-100/+572
|
* SERVER-62711 Increase wait in log_backtrace.js for macOSMark Benvenuto2022-02-081-1/+1
|
* SERVER-59260 Create Feature Flag for FLE2Mark Benvenuto2022-02-084-0/+51
|
* SERVER-63319 remove manually scheduling health checks from fault manager the ↵LaMont Nelson2022-02-081-16/+1
| | | | test suite
* SERVER-61444 Fix race in resharding coordinator service unit testBrett Nawrocki2022-02-081-16/+13
| | | | | | | | | | | | Changes in the previous commit for SERVER-61444 refactored resharding_coordinator_service_test.cpp to use functions for behavior common between test cases. In doing so, the creation order for the ReshardingCoordinatorService and the PauseDuringStateTransitions guard was reversed. If the guard is created after the service, it is possible that the service progresses through a state transition without the guard having observed it. If this happens, when waiting for that state, the guard will hang indefinitely instead of returning immediately. The guard now is once again created before the service to resolve this issue.
* SERVER-61635 Validate that the defragmentation algorithm is fairly executed ↵Tommaso Tocci2022-02-087-89/+152
| | | | across collections
* SERVER-56974 Enable feature flag for PM-2311Jordi Olivares Provencio2022-02-0831-155/+27
|
* SERVER-61894 Support the 'showRawUpdateDescription' option in change stream ↵Drew Paroski2022-02-086-22/+627
| | | | specs
* SERVER-63192 Add slice, split, and sliceAndAdvance APIs to CDRCSara Golemon2022-02-089-44/+259
|
* SERVER-63236 Add AuthorizationManager::invalidateUsersByTenant()Sara Golemon2022-02-085-0/+23
|
* SERVER-63308: Accomodate WT-8601.Daniel Gottlieb2022-02-0810-4429/+4222
| | | | | | | | | | | Move read timestamp visibility against the oplog into MongoDB. WiredTiger historically loses timestamp information across restarts on logged tables. MDB does rely on read_timestamps for visibility against the oplog in some circumstances. While case analysis supports that the WT bug does not manifest in MDB, WT-8601 fully removes timestamps from `WT_UPDATE`s in logged tables. In MDB, the keys for oplog documents are the object's timestamp. MDB will instead use that value to filter an oplog entry's visibilty.
* SERVER-63160 Update TODO for DocumentSource walker/visitorNicholas Zolnierz2022-02-081-1/+1
|
* Revert "SERVER-58694 Implement writing of pre-images for transactional ↵auto-revert-processor2022-02-0833-923/+67
| | | | | | update/replace/delete operations" This reverts commit 54c977ae2b278136a87f4dd46e81bed3d5224d8e.
* SERVER-63324 Don't send forget when not rebuilding instancesMatt Broadstone2022-02-081-4/+7
|
* SERVER-63337 Add option to change log level in resharding testsMarcos José Grillo Ramirez2022-02-082-1/+11
|
* SERVER-62652 Balancer defragmentation test should check remaining chunks at ↵Allison Easton2022-02-082-73/+51
| | | | the end of tests
* SERVER-63365 Reduce number of object copy in balancer secondary threadPaolo Polato2022-02-081-26/+28
|
* SERVER-63073 Fix ShardNotFound handling in ↵Allison Easton2022-02-081-5/+3
| | | | shard_removal_triggers_catalog_cache_invalidation.js
* SERVER-52991 Complete TODO listed in SERVER-32198Allison Easton2022-02-081-10/+0
|
* Revert "SERVER-62343 Create Feature flag for Global Index Metrics"Uladzimir Makouski2022-02-082-42/+0
| | | | This reverts commit 3e36941270e9143f3c6bbb8f053b10659f02fdf7.
* SERVER-63245 Handling StaleShardVersion error for TTL IndexesSergi Mateo Bellido2022-02-083-0/+92
|
* Import wiredtiger: 8b3ed1efc59a88ace0d50f9e40f1b5e5a092b05a from branch ↵Etienne Petrel2022-02-084-10/+67
| | | | | | | | | mongodb-master ref: 79c9e71494..8b3ed1efc5 for: 5.3.0 WT-8717 Flush files to S3 store and cache them locally to a local directory
* Import wiredtiger: 79c9e7149493ad043fffdb3626fe018568f6892a from branch ↵Etienne Petrel2022-02-082-3/+3
| | | | | | | | | mongodb-master ref: 18a36d80c1..79c9e71494 for: 5.3.0 WT-8784 Fix invalid S3CacheExists if condition