summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathisbessamdb <mathis.bessa@mongodb.com>2022-10-17 14:07:05 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-10-17 15:41:14 +0000
commitf9b0ffa6d8f6b7ceb8262256ef9b1840a10674f3 (patch)
treeca005e7948935526a780a961d59bda9a381d593b
parenta9cd6dc27dee06221c3ac0e3eaf62ddf1f3410aa (diff)
downloadmongo-f9b0ffa6d8f6b7ceb8262256ef9b1840a10674f3.tar.gz
SERVER-70252 Tag additional plan cache related tests as 'tenant_migration_incompatible'
-rw-r--r--jstests/core/cached_plan_trial_does_not_discard_work.js2
-rw-r--r--jstests/core/collation_plan_cache.js2
-rw-r--r--jstests/core/explode_for_sort_plan_cache.js2
-rw-r--r--jstests/core/index_filter_commands_invalidate_plan_cache_entries.js2
-rw-r--r--jstests/core/introspect_hidden_index_plan_cache_entries.js2
-rw-r--r--jstests/core/plan_cache_clear.js2
-rw-r--r--jstests/core/plan_cache_list_plans.js2
-rw-r--r--jstests/core/plan_cache_list_shapes.js2
-rw-r--r--jstests/core/plan_cache_sbe.js2
-rw-r--r--jstests/core/plan_cache_shell_helpers.js2
-rw-r--r--jstests/core/plan_cache_stats_shard_and_host.js4
-rw-r--r--jstests/core/sbe/plan_cache_sbe_with_or_queries.js2
-rw-r--r--jstests/core/timeseries/bucket_unpacking_with_sort_plan_cache.js2
-rw-r--r--jstests/core/wildcard_index_cached_plans.js2
14 files changed, 29 insertions, 1 deletions
diff --git a/jstests/core/cached_plan_trial_does_not_discard_work.js b/jstests/core/cached_plan_trial_does_not_discard_work.js
index a7a2d2ffd9c..5c5fbf7b7b6 100644
--- a/jstests/core/cached_plan_trial_does_not_discard_work.js
+++ b/jstests/core/cached_plan_trial_does_not_discard_work.js
@@ -12,6 +12,8 @@
// does_not_support_stepdowns,
// requires_fcv_52,
// requires_profiling,
+// # Plan cache state is node-local and will not get migrated alongside tenant data.
+// tenant_migration_incompatible,
// ]
(function() {
'use strict';
diff --git a/jstests/core/collation_plan_cache.js b/jstests/core/collation_plan_cache.js
index 9ff68a73a9b..052141dc918 100644
--- a/jstests/core/collation_plan_cache.js
+++ b/jstests/core/collation_plan_cache.js
@@ -9,6 +9,8 @@
// assumes_unsharded_collection,
// does_not_support_stepdowns,
// requires_fcv_61,
+// # Plan cache state is node-local and will not get migrated alongside tenant data.
+// tenant_migration_incompatible,
// ]
(function() {
'use strict';
diff --git a/jstests/core/explode_for_sort_plan_cache.js b/jstests/core/explode_for_sort_plan_cache.js
index 201a72382b5..2e6116e25b9 100644
--- a/jstests/core/explode_for_sort_plan_cache.js
+++ b/jstests/core/explode_for_sort_plan_cache.js
@@ -12,6 +12,8 @@
* assumes_balancer_off,
* assumes_unsharded_collection,
* requires_fcv_62,
+ * # Plan cache state is node-local and will not get migrated alongside tenant data.
+ * tenant_migration_incompatible,
* ]
*/
(function() {
diff --git a/jstests/core/index_filter_commands_invalidate_plan_cache_entries.js b/jstests/core/index_filter_commands_invalidate_plan_cache_entries.js
index 51621253414..f95b5df33b0 100644
--- a/jstests/core/index_filter_commands_invalidate_plan_cache_entries.js
+++ b/jstests/core/index_filter_commands_invalidate_plan_cache_entries.js
@@ -10,6 +10,8 @@
* assumes_unsharded_collection,
* does_not_support_stepdowns,
* requires_fcv_62,
+ * # Plan cache state is node-local and will not get migrated alongside tenant data.
+ * tenant_migration_incompatible,
* ]
*/
(function() {
diff --git a/jstests/core/introspect_hidden_index_plan_cache_entries.js b/jstests/core/introspect_hidden_index_plan_cache_entries.js
index decc6623ba9..1d56012bcbf 100644
--- a/jstests/core/introspect_hidden_index_plan_cache_entries.js
+++ b/jstests/core/introspect_hidden_index_plan_cache_entries.js
@@ -8,6 +8,8 @@
* # routed to the primary.
* assumes_read_concern_unchanged,
* assumes_read_preference_unchanged,
+ * # Plan cache state is node-local and will not get migrated alongside tenant data.
+ * tenant_migration_incompatible,
* ]
*/
diff --git a/jstests/core/plan_cache_clear.js b/jstests/core/plan_cache_clear.js
index b76dcb82dd1..e6a9314337b 100644
--- a/jstests/core/plan_cache_clear.js
+++ b/jstests/core/plan_cache_clear.js
@@ -11,6 +11,8 @@
// # If all chunks are moved off of a shard, it can cause the plan cache to miss commands.
// assumes_balancer_off,
// assumes_unsharded_collection,
+// # Plan cache state is node-local and will not get migrated alongside tenant data.
+// tenant_migration_incompatible,
// ]
(function() {
diff --git a/jstests/core/plan_cache_list_plans.js b/jstests/core/plan_cache_list_plans.js
index 9d7988f09e4..4d0ce075b21 100644
--- a/jstests/core/plan_cache_list_plans.js
+++ b/jstests/core/plan_cache_list_plans.js
@@ -14,6 +14,8 @@
// does_not_support_repeated_reads,
// inspects_whether_plan_cache_entry_is_active,
// requires_fcv_62,
+// # Plan cache state is node-local and will not get migrated alongside tenant data.
+// tenant_migration_incompatible,
// ]
(function() {
diff --git a/jstests/core/plan_cache_list_shapes.js b/jstests/core/plan_cache_list_shapes.js
index 6db043884bf..153524ca666 100644
--- a/jstests/core/plan_cache_list_shapes.js
+++ b/jstests/core/plan_cache_list_shapes.js
@@ -11,6 +11,8 @@
// assumes_read_concern_unchanged,
// assumes_read_preference_unchanged,
// assumes_unsharded_collection,
+// # Plan cache state is node-local and will not get migrated alongside tenant data.
+// tenant_migration_incompatible,
// ]
(function() {
'use strict';
diff --git a/jstests/core/plan_cache_sbe.js b/jstests/core/plan_cache_sbe.js
index 76812e0724e..96f80515208 100644
--- a/jstests/core/plan_cache_sbe.js
+++ b/jstests/core/plan_cache_sbe.js
@@ -14,6 +14,8 @@
* assumes_unsharded_collection,
* # The SBE plan cache was introduced in 6.0.
* requires_fcv_60,
+ * # Plan cache state is node-local and will not get migrated alongside tenant data.
+ * tenant_migration_incompatible,
* ]
*/
(function() {
diff --git a/jstests/core/plan_cache_shell_helpers.js b/jstests/core/plan_cache_shell_helpers.js
index 1628883aaa2..7fea2c6bfa5 100644
--- a/jstests/core/plan_cache_shell_helpers.js
+++ b/jstests/core/plan_cache_shell_helpers.js
@@ -10,6 +10,8 @@
// assumes_read_preference_unchanged,
// assumes_unsharded_collection,
// does_not_support_stepdowns,
+// # Plan cache state is node-local and will not get migrated alongside tenant data.
+// tenant_migration_incompatible,
// ]
(function() {
'use strict';
diff --git a/jstests/core/plan_cache_stats_shard_and_host.js b/jstests/core/plan_cache_stats_shard_and_host.js
index e81dcd60692..48536046184 100644
--- a/jstests/core/plan_cache_stats_shard_and_host.js
+++ b/jstests/core/plan_cache_stats_shard_and_host.js
@@ -5,7 +5,9 @@
// assumes_balancer_off,
// assumes_read_concern_unchanged,
// assumes_read_preference_unchanged,
-// does_not_support_stepdowns
+// does_not_support_stepdowns,
+// # Plan cache state is node-local and will not get migrated alongside tenant data.
+// tenant_migration_incompatible,
// ]
(function() {
"use strict";
diff --git a/jstests/core/sbe/plan_cache_sbe_with_or_queries.js b/jstests/core/sbe/plan_cache_sbe_with_or_queries.js
index 46d5e720c79..bdf6e167397 100644
--- a/jstests/core/sbe/plan_cache_sbe_with_or_queries.js
+++ b/jstests/core/sbe/plan_cache_sbe_with_or_queries.js
@@ -8,6 +8,8 @@
// assumes_unsharded_collection,
// does_not_support_stepdowns,
// requires_fcv_60,
+// # Plan cache state is node-local and will not get migrated alongside tenant data.
+// tenant_migration_incompatible,
// ]
(function() {
diff --git a/jstests/core/timeseries/bucket_unpacking_with_sort_plan_cache.js b/jstests/core/timeseries/bucket_unpacking_with_sort_plan_cache.js
index 49a645cb412..b42711b72f7 100644
--- a/jstests/core/timeseries/bucket_unpacking_with_sort_plan_cache.js
+++ b/jstests/core/timeseries/bucket_unpacking_with_sort_plan_cache.js
@@ -16,6 +16,8 @@
* requires_profiling,
* # We need a timeseries collection.
* requires_timeseries,
+ * # Plan cache state is node-local and will not get migrated alongside tenant data.
+ * tenant_migration_incompatible,
* ]
*/
(function() {
diff --git a/jstests/core/wildcard_index_cached_plans.js b/jstests/core/wildcard_index_cached_plans.js
index ce639db0014..f7609bfae96 100644
--- a/jstests/core/wildcard_index_cached_plans.js
+++ b/jstests/core/wildcard_index_cached_plans.js
@@ -13,6 +13,8 @@
* assumes_balancer_off,
* inspects_whether_plan_cache_entry_is_active,
* requires_fcv_62,
+ * # Plan cache state is node-local and will not get migrated alongside tenant data.
+ * tenant_migration_incompatible,
* ]
*/
(function() {