- Release Notes >
- Release Notes for MongoDB 3.2 >
- Downgrade MongoDB from 3.2
Downgrade MongoDB from 3.2¶
On this page
Before you attempt any downgrade, familiarize yourself with the content of this document, particularly the Downgrade Recommendations and Checklist and the procedure for downgrading sharded clusters.
Downgrade Recommendations and Checklist¶
When downgrading, consider the following:
Downgrade Path¶
To downgrade, use the latest version in the 3.0-series.
Preparedness¶
- Remove or downgrade version 3 text indexes before downgrading MongoDB 3.2 to 3.0.
- Remove or downgrade version 3 2dsphere indexes before downgrading MongoDB 3.2 to 3.0.
Procedures¶
Follow the downgrade procedures:
- To downgrade sharded clusters, see Downgrade a 3.2 Sharded Cluster.
- To downgrade replica sets, see Downgrade a 3.2 Replica Set.
- To downgrade a standalone MongoDB instance, see Downgrade a Standalone mongod Instance.
Prerequisites¶
Text Index Version Check¶
If you have version 3 text indexes (i.e. the default version for text indexes in MongoDB 3.2), drop the version 3 text indexes before downgrading MongoDB. After the downgrade, recreate the dropped text indexes.
To determine the version of your text indexes, run
db.collection.getIndexes() to view index specifications. For
text indexes, the method returns the version information in the field
textIndexVersion. For example, the following shows that the
text index on the quotes collection is version 3.
2dsphere Index Version Check¶
If you have version 3 2dsphere indexes (i.e. the default version
for 2dsphere indexes in MongoDB 3.2), drop the version 3
2dsphere indexes before downgrading MongoDB. After the downgrade,
recreate the 2dsphere indexes.
To determine the version of your 2dsphere indexes, run
db.collection.getIndexes() to view index specifications. For
2dsphere indexes, the method returns the version information in the field
2dsphereIndexVersion. For example, the following shows that the
2dsphere index on the locations collection is version 3.
Partial Indexes Check¶
Before downgrading MongoDB, drop any partial indexes.
Downgrade a Standalone mongod Instance¶
The following steps outline the procedure to downgrade a standalone
mongod from version 3.2 to 3.0.
Download the latest 3.0 binaries.¶
For the downgrade, use the latest release in the 3.0 series.
Restart with the latest 3.0 mongod instance.¶
Important
If your mongod instance is using the WiredTiger storage engine, you must include the
--storageEngine option (or storage.engine if
using the configuration file) with the 3.0 binary.
Shut down your mongod instance. Replace the existing
binary with the downloaded mongod binary and restart.
Downgrade a 3.2 Replica Set¶
The following steps outline a “rolling” downgrade process for the replica set. The “rolling” downgrade process minimizes downtime by downgrading the members individually while the other members are available:
Downgrade secondary members of the replica set.¶
Downgrade each secondary member of the replica set, one at a time:
Shut down the
mongod. See Stop mongod Processes for instructions on safely terminatingmongodprocesses.Replace the 3.2 binary with the 3.0 binary and restart.
Important
If your
mongodinstance is using the WiredTiger storage engine, you must include the--storageEngineoption (orstorage.engineif using the configuration file) with the 3.0 binary.Wait for the member to recover to
SECONDARYstate before downgrading the next secondary. To check the member’s state, use thers.status()method in themongoshell.
Step down the primary.¶
Use rs.stepDown() in the mongo shell to
step down the primary and force the normal failover procedure.
rs.stepDown() expedites the failover procedure and is
preferable to shutting down the primary directly.
Replace and restart former primary mongod.¶
When rs.status() shows that the primary has stepped down
and another member has assumed PRIMARY state, shut down the
previous primary and replace the mongod binary with
the 3.0 binary and start the new instance.
Important
If your mongod instance is using the WiredTiger storage engine, you must include the
--storageEngine option (or storage.engine if
using the configuration file) with the 3.0 binary.
Replica set failover is not instant but will render the set unavailable to writes and interrupt reads until the failover process completes. Typically this takes 10 seconds or more. You may wish to plan the downgrade during a predetermined maintenance window.
Downgrade a 3.2 Sharded Cluster¶
Requirements¶
While the downgrade is in progress, you cannot make changes to the collection metadata. For example, during the downgrade, do not do any of the following:
sh.enableSharding()sh.shardCollection()sh.addShard()db.createCollection()db.collection.drop()db.dropDatabase()- any operation that creates a database
- any other operation that modifies the cluster meta-data in any way. See Sharding Reference for a complete list of sharding commands. Note, however, that not all commands on the Sharding Reference page modifies the cluster meta-data.
Downgrade a Sharded Cluster with SCCC Config Servers¶
Disable the Balancer.¶
Turn off the balancer in the sharded cluster, as described in Disable the Balancer.
Downgrade each shard, one at a time.¶
For each replica set shard:
- Downgrade the protocolVersion.
- Downgrade the
mongodsecondaries before downgrading the primary. - To downgrade the primary, run
replSetStepDownand then downgrade.
For details on downgrading a replica set, see Downgrade a 3.2 Replica Set.
Downgrade the SCCC config servers.¶
If the sharded cluster uses 3 mirrored mongod instances
for the config servers, downgrade all three instances in reverse
order of their listing in the --configdb option for
mongos. For example, if mongos has the
following --configdb listing:
Downgrade first confserver3, then confserver2, and lastly,
confserver1. If your mongod instance is using the
WiredTiger storage engine, you must
include the --storageEngine option (or
storage.engine if using the configuration file) with the
3.0 binary.
Re-enable the balancer.¶
Once the downgrade of sharded cluster components is complete, re-enable the balancer.
Downgrade a Sharded Cluster with CSRS Config Servers¶
Disable the Balancer.¶
Turn off the balancer in the sharded cluster, as described in Disable the Balancer.
Check the minOpTimeUpdaters value.¶
If the sharded cluster uses CSRS, for each shard, check
the minOpTimeUpdaters value to see if it is zero. A
minOpTimeUpdaters value of zero indicates that there are no
migrations in progress. A non-zero value indicates either that a
migration is in progress or that a previously completed migration
has somehow failed to clear the minOpTimeUpdaters value and
should be cleared.
To check the value, for each shard, connect to the primary member
(or if a shard is a standalone, connect to the standalone) and
query the system.version collection in the admin database
for the minOpTimeRecovery document:
If minOpTimeUpdaters is non-zero, clear the value by stepping
down the current primary. The value is cleared when a new primary
gets elected.
If the shard is a standalone, restart the shard to clear the value.
Prepare CSRS Config Servers for downgrade.¶
If the sharded cluster uses CSRS:
Remove secondary members from the replica set to have only a primary and two secondaries and only the primary can vote and be eligible to be primary; i.e. the other two members have
0forvotesandpriority.Connect a
mongoshell to the primary and run:Step down the primary using
replSetStepDownagainst theadmindatabase. Ensure enough time for the secondaries to catch up.Connect a
mongoshell to the primary and run:Shut down all members of the config server replica set, the
mongosinstances, and the shards.Restart each config server as standalone 3.2
mongod; i.e. without the--replSetor, if using a configuration file,replication.replSetName.
Downgrade the mongos instances.¶
Important
As the config servers changed from a replica set to three
mirrored mongod instances, update the
--configdb setting. All mongos must use the
same --configdb string.
Downgrade the binaries and restart.
Downgrade Config Servers.¶
Downgrade the binaries and restart. Downgrade in reverse order of
their listing in the --configdb option for
mongos.
If your mongod instance is using the WiredTiger storage engine, you must include the
--storageEngine option (or storage.engine if
using the configuration file) with the 3.0 binary.
Downgrade each shard, one at a time.¶
For each shard, remove the minOpTimeRecovery document from the
admin.system.version collection using the following remove
operation. If the shard is a replica set, issue the remove operation
on the primary of the replica set for each shard:
For each replica set shard, downgrade the mongod binaries
and restart. If your mongod instance is using the
WiredTiger storage engine, you must include
the --storageEngine option (or storage.engine if
using the configuration file) with the 3.0 binary.
- Downgrade the
mongodsecondaries before downgrading the primary. - To downgrade the primary, run
replSetStepDownand then downgrade.
For details on downgrading a replica set, see Downgrade a 3.2 Replica Set.
Re-enable the balancer.¶
Once the downgrade of sharded cluster components is complete, re-enable the balancer.