summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2021-02-10 20:33:49 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-02-12 15:35:36 +0000
commitb521f722e9f0555c230f338bcc78c99c220beacb (patch)
treef2c45cb77f3553912e97d4210c4b5cc6d9797f9c /buildscripts
parent399ce1d4f498b815290cd0f16c881e0e22ebeda8 (diff)
downloadmongo-b521f722e9f0555c230f338bcc78c99c220beacb.tar.gz
SERVER-54453 Backup and restore to exercise time-series collections
Diffstat (limited to 'buildscripts')
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_sharded_causal_consistency.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_sharded_causal_consistency_and_balancer.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_sharded_kill_primary_with_balancer.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_sharded_local_read_write_multi_stmt_txn.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_sharded_local_read_write_multi_stmt_txn_with_balancer.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_kill_primary.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_terminate_primary.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_with_balancer.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_with_stepdowns.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_sharded_replication.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_sharded_replication_with_balancer.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_sharded_terminate_primary_with_balancer.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_sharded_with_stepdowns.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_sharded_with_stepdowns_and_balancer.yml3
15 files changed, 45 insertions, 0 deletions
diff --git a/buildscripts/resmokeconfig/suites/concurrency_sharded_causal_consistency.yml b/buildscripts/resmokeconfig/suites/concurrency_sharded_causal_consistency.yml
index 5949fb48075..416dfbdc455 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_sharded_causal_consistency.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_sharded_causal_consistency.yml
@@ -95,6 +95,9 @@ selector:
# Inserts directly into system.views using applyOps, which is not available on mongos.
- jstests/concurrency/fsm_workloads/view_catalog_direct_system_writes.js
+ # Time-series collections are not supported on mongos.
+ - jstests/concurrency/fsm_workloads/create_timeseries_collection.js
+
exclude_with_any_tags:
- does_not_support_causal_consistency
- assumes_balancer_on
diff --git a/buildscripts/resmokeconfig/suites/concurrency_sharded_causal_consistency_and_balancer.yml b/buildscripts/resmokeconfig/suites/concurrency_sharded_causal_consistency_and_balancer.yml
index 40ae7b4ac69..9cda586c400 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_sharded_causal_consistency_and_balancer.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_sharded_causal_consistency_and_balancer.yml
@@ -104,6 +104,9 @@ selector:
# Inserts directly into system.views using applyOps, which is not available on mongos.
- jstests/concurrency/fsm_workloads/view_catalog_direct_system_writes.js
+ # Time-series collections are not supported on mongos.
+ - jstests/concurrency/fsm_workloads/create_timeseries_collection.js
+
exclude_with_any_tags:
- does_not_support_causal_consistency
# This suite uses secondary read preference, which isn't currently compatible with transactions.
diff --git a/buildscripts/resmokeconfig/suites/concurrency_sharded_kill_primary_with_balancer.yml b/buildscripts/resmokeconfig/suites/concurrency_sharded_kill_primary_with_balancer.yml
index faa1dce843e..b8fa833ba31 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_sharded_kill_primary_with_balancer.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_sharded_kill_primary_with_balancer.yml
@@ -182,6 +182,9 @@ selector:
- jstests/concurrency/fsm_workloads/snapshot_read_kill_op_only.js
- jstests/concurrency/fsm_workloads/snapshot_read_kill_operations.js
+ # Time-series collections are not supported on mongos.
+ - jstests/concurrency/fsm_workloads/create_timeseries_collection.js
+
exclude_with_any_tags:
- assumes_balancer_off
- requires_replication
diff --git a/buildscripts/resmokeconfig/suites/concurrency_sharded_local_read_write_multi_stmt_txn.yml b/buildscripts/resmokeconfig/suites/concurrency_sharded_local_read_write_multi_stmt_txn.yml
index c4044f40d88..e0f42dcb076 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_sharded_local_read_write_multi_stmt_txn.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_sharded_local_read_write_multi_stmt_txn.yml
@@ -130,6 +130,9 @@ selector:
- jstests/concurrency/fsm_workloads/update_rename.js
- jstests/concurrency/fsm_workloads/update_rename_noindex.js
+ # Time-series collections are not supported on mongos.
+ - jstests/concurrency/fsm_workloads/create_timeseries_collection.js
+
exclude_with_any_tags:
- does_not_support_causal_consistency
- requires_replication
diff --git a/buildscripts/resmokeconfig/suites/concurrency_sharded_local_read_write_multi_stmt_txn_with_balancer.yml b/buildscripts/resmokeconfig/suites/concurrency_sharded_local_read_write_multi_stmt_txn_with_balancer.yml
index ec96f2431d9..e0514612b06 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_sharded_local_read_write_multi_stmt_txn_with_balancer.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_sharded_local_read_write_multi_stmt_txn_with_balancer.yml
@@ -133,6 +133,9 @@ selector:
# SERVER-44160 Modify cleanupOrphaned to wait for overlapping ranges to finish
- jstests/concurrency/fsm_workloads/cleanupOrphanedWhileMigrating.js
+ # Time-series collections are not supported on mongos.
+ - jstests/concurrency/fsm_workloads/create_timeseries_collection.js
+
exclude_with_any_tags:
- assumes_balancer_off
- does_not_support_causal_consistency
diff --git a/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn.yml b/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn.yml
index eb6a8f754f4..b34c8b7546c 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn.yml
@@ -133,6 +133,9 @@ selector:
# SERVER-44160 Modify cleanupOrphaned to wait for overlapping ranges to finish
- jstests/concurrency/fsm_workloads/cleanupOrphanedWhileMigrating.js
+ # Time-series collections are not supported on mongos.
+ - jstests/concurrency/fsm_workloads/create_timeseries_collection.js
+
exclude_with_any_tags:
- does_not_support_causal_consistency
- requires_replication
diff --git a/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_kill_primary.yml b/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_kill_primary.yml
index 8aa0ee3784d..d0c6aa054d2 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_kill_primary.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_kill_primary.yml
@@ -201,6 +201,9 @@ selector:
- jstests/concurrency/fsm_workloads/remove_where.js
- jstests/concurrency/fsm_workloads/update_where.js
+ # Time-series collections are not supported on mongos.
+ - jstests/concurrency/fsm_workloads/create_timeseries_collection.js
+
exclude_with_any_tags:
- requires_replication
# Snapshot reads in transactions are banned on capped collections.
diff --git a/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_terminate_primary.yml b/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_terminate_primary.yml
index 6c8c02121ae..d7d94c87166 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_terminate_primary.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_terminate_primary.yml
@@ -201,6 +201,9 @@ selector:
- jstests/concurrency/fsm_workloads/remove_where.js
- jstests/concurrency/fsm_workloads/update_where.js
+ # Time-series collections are not supported on mongos.
+ - jstests/concurrency/fsm_workloads/create_timeseries_collection.js
+
exclude_with_any_tags:
- requires_replication
# Snapshot reads in transactions are banned on capped collections.
diff --git a/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_with_balancer.yml b/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_with_balancer.yml
index 294342b192c..a1f9ee9714e 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_with_balancer.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_with_balancer.yml
@@ -133,6 +133,9 @@ selector:
# SERVER-44160 Modify cleanupOrphaned to wait for overlapping ranges to finish
- jstests/concurrency/fsm_workloads/cleanupOrphanedWhileMigrating.js
+ # Time-series collections are not supported on mongos.
+ - jstests/concurrency/fsm_workloads/create_timeseries_collection.js
+
exclude_with_any_tags:
- assumes_balancer_off
- does_not_support_causal_consistency
diff --git a/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_with_stepdowns.yml b/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_with_stepdowns.yml
index 885f6c865de..69908b4b9c7 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_with_stepdowns.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_sharded_multi_stmt_txn_with_stepdowns.yml
@@ -178,6 +178,9 @@ selector:
- jstests/concurrency/fsm_workloads/remove_where.js
- jstests/concurrency/fsm_workloads/update_where.js
+ # Time-series collections are not supported on mongos.
+ - jstests/concurrency/fsm_workloads/create_timeseries_collection.js
+
exclude_with_any_tags:
- does_not_support_causal_consistency
- requires_replication
diff --git a/buildscripts/resmokeconfig/suites/concurrency_sharded_replication.yml b/buildscripts/resmokeconfig/suites/concurrency_sharded_replication.yml
index 71bf7634897..dfb0186f934 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_sharded_replication.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_sharded_replication.yml
@@ -108,6 +108,9 @@ selector:
# Inserts directly into system.views using applyOps, which is not available on mongos.
- jstests/concurrency/fsm_workloads/view_catalog_direct_system_writes.js
+ # Time-series collections are not supported on mongos.
+ - jstests/concurrency/fsm_workloads/create_timeseries_collection.js
+
exclude_with_any_tags:
- requires_replication
- assumes_balancer_on
diff --git a/buildscripts/resmokeconfig/suites/concurrency_sharded_replication_with_balancer.yml b/buildscripts/resmokeconfig/suites/concurrency_sharded_replication_with_balancer.yml
index 8a8c863d129..a6dd21ba613 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_sharded_replication_with_balancer.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_sharded_replication_with_balancer.yml
@@ -113,6 +113,9 @@ selector:
# Inserts directly into system.views using applyOps, which is not available on mongos.
- jstests/concurrency/fsm_workloads/view_catalog_direct_system_writes.js
+ # Time-series collections are not supported on mongos.
+ - jstests/concurrency/fsm_workloads/create_timeseries_collection.js
+
exclude_with_any_tags:
- assumes_balancer_off
- requires_replication
diff --git a/buildscripts/resmokeconfig/suites/concurrency_sharded_terminate_primary_with_balancer.yml b/buildscripts/resmokeconfig/suites/concurrency_sharded_terminate_primary_with_balancer.yml
index fa6c78b2ee5..eb4173987bf 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_sharded_terminate_primary_with_balancer.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_sharded_terminate_primary_with_balancer.yml
@@ -182,6 +182,9 @@ selector:
- jstests/concurrency/fsm_workloads/snapshot_read_kill_op_only.js
- jstests/concurrency/fsm_workloads/snapshot_read_kill_operations.js
+ # Time-series collections are not supported on mongos.
+ - jstests/concurrency/fsm_workloads/create_timeseries_collection.js
+
exclude_with_any_tags:
- assumes_balancer_off
- requires_replication
diff --git a/buildscripts/resmokeconfig/suites/concurrency_sharded_with_stepdowns.yml b/buildscripts/resmokeconfig/suites/concurrency_sharded_with_stepdowns.yml
index a65c5d559c1..7f6b314d8d1 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_sharded_with_stepdowns.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_sharded_with_stepdowns.yml
@@ -169,6 +169,9 @@ selector:
- jstests/concurrency/fsm_workloads/snapshot_read_kill_op_only.js
- jstests/concurrency/fsm_workloads/snapshot_read_kill_operations.js
+ # Time-series collections are not supported on mongos.
+ - jstests/concurrency/fsm_workloads/create_timeseries_collection.js
+
exclude_with_any_tags:
- requires_replication
- requires_non_retryable_writes
diff --git a/buildscripts/resmokeconfig/suites/concurrency_sharded_with_stepdowns_and_balancer.yml b/buildscripts/resmokeconfig/suites/concurrency_sharded_with_stepdowns_and_balancer.yml
index 413fa17a469..2b96783d814 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_sharded_with_stepdowns_and_balancer.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_sharded_with_stepdowns_and_balancer.yml
@@ -177,6 +177,9 @@ selector:
# SERVER-44160 Modify cleanupOrphaned to wait for overlapping ranges to finish
- jstests/concurrency/fsm_workloads/cleanupOrphanedWhileMigrating.js
+ # Time-series collections are not supported on mongos.
+ - jstests/concurrency/fsm_workloads/create_timeseries_collection.js
+
exclude_with_any_tags:
- assumes_balancer_off
- requires_replication