mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-24 08:30:56 +01:00
863dff0fd7
GitOrigin-RevId: 2e218cf645c8e655f4cc6f0a8617395b632a3dab
63 lines
2.0 KiB
JavaScript
63 lines
2.0 KiB
JavaScript
// Basic tests for resharding for timeseries collection.
|
|
// @tags: [
|
|
// featureFlagUnshardCollection,
|
|
// multiversion_incompatible,
|
|
// assumes_balancer_off,
|
|
// requires_fcv_80,
|
|
// ]
|
|
//
|
|
|
|
import {ReshardingTest} from "jstests/sharding/libs/resharding_test_fixture.js";
|
|
const ns = "reshardingDb.coll";
|
|
|
|
const reshardingTest = new ReshardingTest({numDonors: 2});
|
|
reshardingTest.setup();
|
|
|
|
const donorShardNames = reshardingTest.donorShardNames;
|
|
|
|
const timeseriesInfo = {
|
|
timeField: 'ts',
|
|
metaField: 'meta'
|
|
};
|
|
|
|
const timeseriesCollection = reshardingTest.createShardedCollection({
|
|
ns: ns,
|
|
shardKeyPattern: {'meta.x': 1},
|
|
chunks: [
|
|
{min: {'meta.x': MinKey}, max: {'meta.x': 0}, shard: donorShardNames[0]},
|
|
{min: {'meta.x': 0}, max: {'meta.x': MaxKey}, shard: donorShardNames[1]},
|
|
],
|
|
collOptions: {
|
|
timeseries: timeseriesInfo,
|
|
}
|
|
});
|
|
|
|
const bucketNss = "reshardingDb.system.buckets.coll";
|
|
|
|
// Insert some docs
|
|
assert.commandWorked(timeseriesCollection.insert([
|
|
{data: 1, ts: new Date(), meta: {x: 1, y: -1}},
|
|
{data: 3, ts: new Date(), meta: {x: 2, y: -2}},
|
|
{data: 3, ts: new Date(), meta: {x: 4, y: -3}},
|
|
{data: 1, ts: new Date(), meta: {x: 5, y: -4}}
|
|
]));
|
|
|
|
const st = reshardingTest._st;
|
|
reshardingTest.withUnshardCollectionInBackground({
|
|
toShard: st.shard2.shardName,
|
|
});
|
|
|
|
let timeseriesCollDocPostResharding = st.config.collections.findOne({_id: bucketNss});
|
|
// Resharding keeps timeseries fields.
|
|
assert.eq(timeseriesCollDocPostResharding.timeseriesFields.timeField, timeseriesInfo.timeField);
|
|
assert.eq(timeseriesCollDocPostResharding.timeseriesFields.metaField, timeseriesInfo.metaField);
|
|
// Resharding has updated shard key.
|
|
assert.eq(timeseriesCollDocPostResharding.key, {"_id": 1});
|
|
assert.eq(timeseriesCollDocPostResharding.unsplittable, true);
|
|
|
|
assert.eq(4, st.rs2.getPrimary().getCollection(bucketNss).countDocuments({}));
|
|
assert.eq(0, st.rs0.getPrimary().getCollection(bucketNss).countDocuments({}));
|
|
assert.eq(4, st.s0.getCollection(ns).countDocuments({}));
|
|
|
|
reshardingTest.teardown();
|