Upgrade Swarm64 DA
Instructions to upgrade Swarm64 DA.
Swarm64 DA versions are tied to specific PostgreSQL minor versions for compatibility. Check the release notes to know when you need to upgrade the minor version of PostgreSQL.
-
Upgrade the corresponding Swarm64 DA package for your operating system and PostgreSQL installation.
- Ubuntu/Debian and PostgreSQL 12
sudo apt-get update sudo apt-get install --only-upgrade swarm64da-psql-12
- Ubuntu/Debian and PostgreSQL 13
sudo apt-get update sudo apt-get install --only-upgrade swarm64da-psql-13
- CentOS and PostgreSQL 12
sudo yum update swarm64da-psql-12
- CentOS and PostgreSQL 13
sudo yum update swarm64da-psql-13
- Restart PostgreSQL.
-
Switch to a user with access to the database:
sudo su - postgres
-
Connect to the database:
psql
-
Upgrade the Swarm64 DA extension:
Execute this step in each database of your installation that uses Swarm64 DA. Columnstore indexes are updated automatically when necessary. During the update, which may take up to several minutes, the columnstore index performance may be temporarily reduced.ALTER EXTENSION swarm64da UPDATE;
-
Verify that the Swarm64 DA extension is loaded correctly and look up its
version number:
SELECT * FROM swarm64da.get_version();