summaryrefslogtreecommitdiff
path: root/src/mongo/s/write_ops
diff options
context:
space:
mode:
authorMatthew Saltz <matthew.saltz@mongodb.com>2018-07-30 18:04:12 -0400
committerMatthew Saltz <matthew.saltz@mongodb.com>2018-08-09 14:30:15 -0400
commitda38575dde0a316c30d6579fa61a8c64376a4062 (patch)
tree9dd4037ac59a27a3dfb228602a55e66494d54e6e /src/mongo/s/write_ops
parent770b51316bed3f708698d57f8e9963646d612ac7 (diff)
downloadmongo-da38575dde0a316c30d6579fa61a8c64376a4062.tar.gz
SERVER-34448 Enable autosplitting on the shard and disable on mongos
SERVER-34449 Handle upgrade/downgrade logic for autosplitting on shard SERVER-34448 Wait for chunk splitting in top chunk optimization tests SERVER-34448 Require persistence in shard_existing_coll_chunk_count.js
Diffstat (limited to 'src/mongo/s/write_ops')
-rw-r--r--src/mongo/s/write_ops/cluster_write.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/s/write_ops/cluster_write.cpp b/src/mongo/s/write_ops/cluster_write.cpp
index 0f0772d7ec3..e1cc19ef124 100644
--- a/src/mongo/s/write_ops/cluster_write.cpp
+++ b/src/mongo/s/write_ops/cluster_write.cpp
@@ -232,7 +232,8 @@ void ClusterWriter::write(OperationContext* opCtx,
BatchWriteExec::executeBatch(opCtx, targeter, request, response, stats);
}
- splitIfNeeded(opCtx, request.getNS(), targeterStats);
+ // TODO Re-enable for mixed-version scenarios
+ // splitIfNeeded(opCtx, request.getNS(), targeterStats);
}
}