0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/replsets/text_index_limits.js

57 lines
1.7 KiB
JavaScript

/**
* There is no limit for the total size or the number of unique terms for text index.
*
* Each insert involves creating big text index which runs slowly enough to get
* killed by a stepdown before any attempt can finish on slower variants.
* @tags: [does_not_support_stepdowns]
*/
(function() {
"use strict";
const replTest = new ReplSetTest({nodes: 3});
replTest.startSet();
replTest.initiate();
const db = replTest.getPrimary().getDB("test");
var t = db.text_index_limits;
t.drop();
assert.commandWorked(t.createIndex({comments: "text"}));
replTest.awaitReplication();
// 1. Test number of unique terms exceeds 400,000
let commentsWithALotOfUniqueWords = "";
// 26^4 = 456,976 > 400,000
for (let ch1 = 97; ch1 < 123; ch1++) {
for (let ch2 = 97; ch2 < 123; ch2++) {
for (let ch3 = 97; ch3 < 123; ch3++) {
for (let ch4 = 97; ch4 < 123; ch4++) {
let word = String.fromCharCode(ch1, ch2, ch3, ch4);
commentsWithALotOfUniqueWords += word + " ";
}
}
}
}
assert.commandWorked(db.runCommand(
{insert: t.getName(), documents: [{_id: 1, comments: commentsWithALotOfUniqueWords}]}));
// 2. Test total size of index keys for unique terms exceeds 4MB
// 26^3 = 17576 < 400,000
let prefix = "a".repeat(400);
let commentsWithWordsOfLargeSize = "";
for (let ch1 = 97; ch1 < 123; ch1++) {
for (let ch2 = 97; ch2 < 123; ch2++) {
for (let ch3 = 97; ch3 < 123; ch3++) {
let word = String.fromCharCode(ch1, ch2, ch3);
commentsWithWordsOfLargeSize += prefix + word + " ";
}
}
}
assert.commandWorked(db.runCommand(
{insert: t.getName(), documents: [{_id: 2, comments: commentsWithWordsOfLargeSize}]}));
replTest.stopSet();
})();