diff options
author | Ben Shteinfeld <ben.shteinfeld@mongodb.com> | 2022-11-08 21:40:31 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2022-11-08 22:33:43 +0000 |
commit | bae712c9891ad30c4fa9e1413efa4b3f3aa5c828 (patch) | |
tree | b73222332a3b0de6067b94a3a710a03d1fa827d6 /jstests/noPassthrough | |
parent | 7a45a7307f2aac8389a0cb0a9b805e28686b4874 (diff) | |
download | mongo-bae712c9891ad30c4fa9e1413efa4b3f3aa5c828.tar.gz |
SERVER-68847 Include query framework information in GetMore profiler entries
Diffstat (limited to 'jstests/noPassthrough')
-rw-r--r-- | jstests/noPassthrough/query_engine_stats.js | 72 |
1 files changed, 60 insertions, 12 deletions
diff --git a/jstests/noPassthrough/query_engine_stats.js b/jstests/noPassthrough/query_engine_stats.js index 0913e2f8596..aa5b9f4af22 100644 --- a/jstests/noPassthrough/query_engine_stats.js +++ b/jstests/noPassthrough/query_engine_stats.js @@ -63,18 +63,12 @@ function verifySlowQueryLog(db, expectedComment, queryFramework) { // Ensure the profile filter contains the correct information about the queryFramework used. function verifyProfiler(expectedComment, queryFramework) { - const profileEntryFilter = {ns: "query_engine_stats.collection"}; + const profileEntryFilter = { + ns: "query_engine_stats.collection", + "command.comment": expectedComment + }; const profileObj = getLatestProfilerEntry(db, profileEntryFilter); - try { - assert.eq(profileObj.command.comment, expectedComment); - if (queryFramework) { - assert.eq(profileObj.queryFramework, queryFramework); - } - } catch (e) { - print('failed to find [{ "queryFramework" : "' + queryFramework + '", { "comment" : "' + - expectedComment + '"} }] in the latest profiler entry.'); - throw (e); - } + assert.eq(profileObj.queryFramework, queryFramework); } // Create an object with the correct queryFramework counter values after the specified type of @@ -155,9 +149,25 @@ verifySlowQueryLog(db, queryComment, framework.find.classic); compareQueryEngineCounters(expectedCounters); verifyProfiler(queryComment, framework.find.classic); +// Find with getMore. +queryComment = "findClassicGetMore"; +let cursor = coll.find({a: {$gt: 2}}).comment(queryComment).batchSize(1); +cursor.next(); // initial query +verifyProfiler(queryComment, framework.find.classic); +cursor.next(); // getMore performed +verifyProfiler(queryComment, framework.find.classic); + +// Aggregation with getMore. +queryComment = "aggClassicGetMore"; +cursor = coll.aggregate([{$match: {a: {$gt: 2}}}], {comment: queryComment, batchSize: 1}); +cursor.next(); // initial query +verifyProfiler(queryComment, framework.find.classic); +cursor.next(); // getMore performed +verifyProfiler(queryComment, framework.find.classic); + // Turn SBE on. assert.commandWorked( - db.adminCommand({setParameter: 1, internalQueryFrameworkControl: "tryBonsai"})); + db.adminCommand({setParameter: 1, internalQueryFrameworkControl: "trySbeEngine"})); // Run a find command. expectedCounters = generateExpectedCounters(framework.find.sbe); @@ -191,6 +201,28 @@ verifySlowQueryLog(db, queryComment, framework.find.sbe); compareQueryEngineCounters(expectedCounters); verifyProfiler(queryComment, framework.find.sbe); +// SBE find with getMore. +queryComment = "findSBEGetMore"; +cursor = coll.find({a: {$gt: 2}}).comment(queryComment).batchSize(1); +cursor.next(); // initial query +verifyProfiler(queryComment, framework.find.sbe); +cursor.next(); // getMore performed +verifyProfiler(queryComment, framework.find.sbe); + +// SBE aggregation with getMore. +queryComment = "aggSBEGetMore"; +cursor = coll.aggregate( + [ + {$_internalInhibitOptimization: {}}, + {$group: {_id: "$a", acc: {$sum: "$b"}}}, + {$match: {acc: {$gt: 0}}} + ], + {comment: queryComment, batchSize: 1}); +cursor.next(); // initial query +verifyProfiler(queryComment, framework.find.sbe); +cursor.next(); // getMore performed +verifyProfiler(queryComment, framework.find.sbe); + MongoRunner.stopMongod(conn); conn = MongoRunner.runMongod({restart: conn, setParameter: 'featureFlagCommonQueryFramework=1'}); @@ -228,5 +260,21 @@ verifySlowQueryLog(db, queryComment, framework.find.sbe); compareQueryEngineCounters(expectedCounters); verifyProfiler(queryComment, framework.find.sbe); +// CQF find with getMore. +queryComment = "findCQFGetMore"; +cursor = coll.find({a: {$gt: 2}}).comment(queryComment).batchSize(1); +cursor.next(); // initial query +verifyProfiler(queryComment, "cqf"); +cursor.next(); // getMore performed +verifyProfiler(queryComment, "cqf"); + +// CQF aggregation with getMore. +queryComment = "aggCQFGetMore"; +cursor = coll.aggregate([{$match: {a: {$gt: 2}}}], {comment: queryComment, batchSize: 1}); +cursor.next(); // initial query +verifyProfiler(queryComment, "cqf"); +cursor.next(); // getMore performed +verifyProfiler(queryComment, "cqf"); + MongoRunner.stopMongod(conn); })(); |