Downgrade from Database 8.0
This page describes how to downgrade from Database 8.0.
If you have no strong-consistency
namespaces, you can downgrade from Database 8.0 without issue. If you have one or more strong-consistency
namespaces, you must first verify that no transactions are ongoing.
If you have used transactions or if you are unsure, use the following steps to downgrade:
-
Disable transaction writes:
asadm --enable -e "manage config namespace NAMESPACE param disable-mrt-writes to true" -
Wait for the provisional count to reach zero on all nodes:
asadm -e "watch show stat like mrt_provisionals" -
Wait for transaction monitor records in the monitor set to reach zero on all nodes:
asadm -e "show statistics sets for test <ERO~MRT like objects" -
Do the following for each node, one node at a time:
-
Quiesce the node:
asadm --enable -e "manage quiesce with NODE-ID" -
Stop the node:
sudo systemctl stop aerospike -
Wipe storage to ensure that there isn’t any incompatible data.
-
Downgrade the server package.
-
Start the node:
sudo systemctl start aerospike -
Monitor the migration until complete:
asadm -e "watch show stat like migrate_partitions_remaining"
-