- Release Notes >
- Release Notes for MongoDB 4.4 >
- Downgrade 4.4 to 4.2 >
- Downgrade 4.4 Replica Set to 4.2
Downgrade 4.4 Replica Set to 4.2¶
On this page
Before you attempt any downgrade, familiarize yourself with the content of this document.
Downgrade Path¶
Once upgraded to 4.4, if you need to downgrade, we recommend downgrading to the latest patch release of 4.2.
Downgrade Floor
If you need to downgrade form version 4.4, downgrade to 4.2.6 or a later version. You cannot downgrade to 4.2.5 or an earlier version.
Create Backup¶
Optional but Recommended. Create a backup of your database.
Access Control¶
If your replica set has access control enabled, your downgrade user
privileges must include privileges to list and manage indexes across
databases. A user with root
role has the required
privileges.
Prerequisites¶
To downgrade from 4.2 to 4.0, you must remove incompatible features that are persisted and/or update incompatible configuration settings.
1. Namespace Length¶
Starting in MongoDB 4.4:
- For featureCompatibilityVersion set to
"4.4"
or greater, MongoDB raises the limit on collection/view namespace to 255 bytes. For a collection or a view, the namespace includes the database name, the dot (.
) separator, and the collection/view name (e.g.<database>.<collection>
), - For featureCompatibilityVersion set to
"4.2"
or earlier, the maximum length of the collection/view namespace remains 120 bytes.
Before downgrading, resolve any collections or views with namespaces
that exceed the 120-byte Namespace Length
limit for Feature
Compatibility Version (fCV) 4.2.
To determine if you have any collections or views with namespaces
that exceed the 120-byte limit, connect mongo
shell
to the primary and run:
If any collection or view namespace exceeds 120 bytes, then prior to downgrading the fCV:
- Rename the collection using the
renameCollection
command. - For views, use
db.createView()
to recreate the view using a shorter name, then drop the original view.
2. Downgrade Feature Compatibility Version (fCV)¶
Tip
- Ensure that no initial sync is in progress. Running
setFeatureCompatibilityVersion
command while an initial sync is in progress will cause the initial sync to restart. - Ensure that no replica set member is in
ROLLBACK
orRECOVERING
state. - Downgrading to
featureCompatibilityVersion (fCV) : “4.2”
implicitly performs a
replSetReconfig
to remove theterm
field from the configuration document and blocks until the new configuration propagates to a majority of replica set members.
To downgrade the featureCompatibilityVersion
of your sharded
cluster:
Connect a
mongo
shell to the primary.Downgrade the
featureCompatibilityVersion
to"4.2"
.The
setFeatureCompatibilityVersion
command performs writes to an internal system collection and is idempotent. If for any reason the command does not complete successfully, retry the command on the primary.To ensure that all members of the replica set reflect the updated
featureCompatibilityVersion
, connect to each replica set member and check thefeatureCompatibilityVersion
:All members should return a result that includes:
If any member returns a
featureCompatibilityVersion
of"4.4"
, wait for the member to reflect version"4.2"
before proceeding.
For more information on the returned featureCompatibilityVersion
value, see View FeatureCompatibilityVersion.
3. Remove FCV 4.4 Persisted Features¶
The following steps are necessary only if fCV has ever been set to
"4.4"
.
Remove all persisted 4.4 features that are incompatible with 4.2. These include:
- Compound Hashed Indexes
Remove all compound hashed indexes.
Use
db.collection.getIndexes()
to identify any compound hashed indexes in a collection and usedb.collection.dropIndex()
to remove those indexes.
4. Remove 4.4 Features¶
Remove all persisted features that use 4.4 features. These include but are not limited to:
- If any view definitions that include 4.4 operators, such as
$unionWith
or$function
. See also New Aggregation Operators. Unhide
ordrop
hidden indexes.
Procedure¶
Warning
Before proceeding with the downgrade procedure, ensure that all
replica set members, including delayed replica set members, reflect
the prerequisite changes. That is, check the
featureCompatibilityVersion
and the removal of incompatible
features for each node before downgrading.
Download the latest 4.2 binaries.¶
Using either a package manager or a manual download, get the latest release in the 4.2 series. If using a package manager, add a new repository for the 4.2 binaries, then perform the actual downgrade process.
Once upgraded to 4.4, if you need to downgrade, we recommend downgrading to the latest patch release of 4.2.
Downgrade secondary members of the replica set.¶
Downgrade each secondary member of the replica set, one at a time:
Shut down the
mongod
.Replace the 4.4 binary with the 4.2 binary and restart.
Wait for the member to recover to
SECONDARY
state before downgrading the next secondary. To check the member’s state, use thers.status()
method in themongo
shell.Once the member is in
SECONDARY
stage, downgrade the next secondary.
Downgrade arbiter replica set member, if any.¶
Skip this step if the replica set does not include an arbiter.
Downgrade the arbiter member of the replica set:
Shut down the
mongod
. See Stop mongod Processes for additional ways to safely terminatemongod
processes.Delete the contents of the arbiter data directory. The
storage.dbPath
configuration setting or--dbpath
command line option specify the data directory of the arbitermongod
.Replace the 4.4 binary with the 4.2 binary and restart.
Wait for the member to recover to
ARBITER
state. To check the member’s state, connect amongo
shell to the member and runrs.status()
method.
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.
Replace the
mongod
binary with the 4.2 binary and restart.