summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/op_observer_sharding_test.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-55592 Add time-series fields to sharding catalogSergi Mateo Bellido2021-04-211-0/+1
| | | | | | | | | * Adding IDL support to time-series fields + exposing its symbols in some class wrappers * Modifying the CatalogCacheLoader, CatalogCache and the ChunkManager to handle the new timeseries fields * Disallowing operations over sharded time-series collections * Fixing some tests + adding a new one
* SERVER-53093 Add timestamp to ChunkVersionSergi Mateo Bellido2020-12-101-2/+5
| | | | PART 2: Fixing our tests
* SERVER-52933 Add timestamp to the DatabaseVersion IDLSergi Mateo Bellido2020-11-241-1/+1
| | | | | | PART 1 - Adding a new DatabaseVersion class that handles the underlying IDL implementation of a DatabaseVersion
* SERVER-50027 Implement an 'allowMigrations' collection propertyKaloian Manassiev2020-11-111-0/+1
|
* SERVER-46199 Make the RoutingTableHistory movableKaloian Manassiev2020-09-031-25/+29
|
* SERVER-49568 Thread the CollectionType's ReshardingFields through to the ↵Blake Oler2020-09-021-2/+8
| | | | CatalogCache refresh
* SERVER-50505 Make the CatalogCache return ChunkManager(s) directlyKaloian Manassiev2020-09-011-1/+3
| | | | | ... instead of returning the intermediate CachedCollectionRoutingInfo class. The ChunkManager should be the only class used for routing.
* SERVER-50329 Make ChunkManager be passed by value everywhereKaloian Manassiev2020-08-171-2/+1
| | | | ... instead of shared_ptr.
* SERVER-49800 fix use-after-move violations in testsBenety Goh2020-08-011-1/+1
|
* SERVER-48775 Move all Sharding unit-tests that assume a MongoD to the db/s ↵Kaloian Manassiev2020-06-211-1/+1
| | | | | | | | directory With this change there are no more references from mongo/s (which is code common between MongoS and MongoD) and mongo/db/s (which is code specific for MongoD only).
* SERVER-47531 OpObserver: Convert usage of ↵Cheahuychou Mao2020-05-081-15/+19
| | | | getCollectionDescription_DEPRECATED to getCollectionDescription
* SERVER-45782 ensure internal-only usage of three CollectionShardingRuntime ↵Tommaso Tocci2020-04-091-0/+159
functions - setFilteringMetadata - getCurrentMetadataIfKnown - getShardVersionIfKnown Have been moved from CSS to CSR to ensure no external usages. Moreover the getShardVersion command is now foribidden on unsharded mongod. It will return ErrorCodes.NoShardingEnabled in such a case.