summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamran Khan <kamran.khan@mongodb.com>2015-07-27 14:44:19 -0400
committerKamran Khan <kamran.khan@mongodb.com>2015-07-27 14:44:19 -0400
commit6fcca346efc8817c557ac45041700318efb863d7 (patch)
tree6209131e63da10cba28e23ffa1846779fac898d9
parentdaadcec8db3f0021b95cb410458ab7ae176515e3 (diff)
downloadmongo-6fcca346efc8817c557ac45041700318efb863d7.tar.gz
SERVER-19128 Disable the reindex/bgindex FSM workload for replicated clusters
The workload currently triggers a fatal assertion and will be re-enabled when the server bug is fixed.
-rw-r--r--jstests/concurrency/fsm_all_replication.js1
-rw-r--r--jstests/concurrency/fsm_all_sharded_replication.js1
-rw-r--r--jstests/concurrency/fsm_all_sharded_replication_legacy_config_servers.js1
3 files changed, 3 insertions, 0 deletions
diff --git a/jstests/concurrency/fsm_all_replication.js b/jstests/concurrency/fsm_all_replication.js
index ddc3817a988..1eb772472de 100644
--- a/jstests/concurrency/fsm_all_replication.js
+++ b/jstests/concurrency/fsm_all_replication.js
@@ -6,6 +6,7 @@ var dir = 'jstests/concurrency/fsm_workloads';
var blacklist = [
// Disabled due to known bugs
+ 'reindex_background.js', // SERVER-19128 Fatal assertion during secondary index build
'yield_sort.js', // SERVER-17011 Cursor can return objects out of order if updated during query
// Disabled due to MongoDB restrictions and/or workload restrictions
diff --git a/jstests/concurrency/fsm_all_sharded_replication.js b/jstests/concurrency/fsm_all_sharded_replication.js
index 23279604f21..b99a3bfc151 100644
--- a/jstests/concurrency/fsm_all_sharded_replication.js
+++ b/jstests/concurrency/fsm_all_sharded_replication.js
@@ -14,6 +14,7 @@ var blacklist = [
'distinct.js', // SERVER-13116 distinct isn't sharding aware
'distinct_noindex.js', // SERVER-13116 distinct isn't sharding aware
'distinct_projection.js', // SERVER-13116 distinct isn't sharding aware
+ 'reindex_background.js', // SERVER-19128 Fatal assertion during secondary index build
'yield_sort.js', // SERVER-17011 Cursor can return objects out of order if updated during query
'yield_sort_merge.js', // SERVER-17011 also applies, since this query uses SORT stage,
// not SORT_MERGE stage in sharded environment
diff --git a/jstests/concurrency/fsm_all_sharded_replication_legacy_config_servers.js b/jstests/concurrency/fsm_all_sharded_replication_legacy_config_servers.js
index 9e411db6ae1..bf41e8b8209 100644
--- a/jstests/concurrency/fsm_all_sharded_replication_legacy_config_servers.js
+++ b/jstests/concurrency/fsm_all_sharded_replication_legacy_config_servers.js
@@ -14,6 +14,7 @@ var blacklist = [
'distinct.js', // SERVER-13116 distinct isn't sharding aware
'distinct_noindex.js', // SERVER-13116 distinct isn't sharding aware
'distinct_projection.js', // SERVER-13116 distinct isn't sharding aware
+ 'reindex_background.js', // SERVER-19128 Fatal assertion during secondary index build
'yield_sort.js', // SERVER-17011 Cursor can return objects out of order if updated during query
'yield_sort_merge.js', // SERVER-17011 also applies, since this query uses SORT stage,
// not SORT_MERGE stage in sharded environment