Upgrading from a previous version

Erigon Version Upgrade: Latest Features, Data Compatibility, and Downgrade Options

Updating to the latest version of Erigon gives you access to the latest features and ensures optimal performance and stability.

General Recommendations Before Upgrade

  • Read Release Notes: Carefully review the Release Notes for breaking changes and new features relevant to your setup.

  • Terminate your Erigon: End your current Erigon session by pressing CTRL+C.

  • Backup: Always back up your datadir before performing major upgrades.

Managing your Data

Erigon 3.1 introduces a new snapshot format while continuing to support the old one. This means that new releases are fully compatible with your existing data. However, users who want the latest data files and data-specific fixes can perform an optional manual data upgrade:

  1. Backup your datadir.

  2. Upgrade your Erigon installation whether from a binary, compiled source code, or Docker.

  3. To initiate the data upgrade, use the following command: ./build/bin/erigon snapshots reset --datadir /your/datadir.

  4. Run Erigon, it will reuse existing data and sync only newer snapshots.

Snapshots Upgrade Options

  • erigon update-to-new-ver-format --datadir /your/datadir: this option updates snapshots to be compatible with latest version, but you will not get the full benefits of the new snapshots.

  • erigon snapshots reset --datadir /your/datadir: this command removes all old snapshots that have had performance improvements.

Choose upgrade for a quicker process, or reset for maximum performance. If you choose reset, you'll need to wait for the new snapshots to download once Erigon starts.

Why Upgrading Erigon Doesn't Always Fix Your Data

Upgrading Erigon involves a key distinction between its core software and its data files, which are managed separately. This approach is rooted in practicality and user control.

The Erigon software is the application that processes and interacts with blockchain data. However, the majority of the data itself, including the state of the network, exists in data files that you download and store locally.

If a bug is discovered, it is often in the data itself rather than a flaw in the Erigon code. In such a case, simply updating the Erigon binary won't resolve the issue because the faulty data remains on your disk. This is because Erigon upgrades do not normally alter the data files. You must reset and re-download the data snapshots to get the corrected files.

This separation prevents unnecessary and time-consuming processes. The Erigon team cannot regenerate months of data for every minor bug fix, and users shouldn't have to re-download terabytes of information with every new weekly software release.

This design also provides flexibility. A user might need a specific data fix but prefer to remain on an older software version due to a known bug or regression in the latest release. Similarly, a user might be satisfied with their current data set and only need to update the Erigon binary.

While this dual-versioning system may seem complex, it is a deliberate design choice that optimizes for both efficiency and user autonomy.

Snapshots Downgrade Options

If upgrading snapshots(3.0to 3.1) now happens automatically, you should follow these instructions for downgrading:

  1. Make sure that you're running Erigon on 3.1.x version, use erigon --version.

  2. Run erigon --datadir ../your/datadir reset-to-old-ver-format to reset your snapshots to old format.

  3. git checkout v3.0.x to checkout to preferred 3.0 version. For example now latest: git checkout v3.0.15

  4. Run your old version of Erigon.

Upgrading your Erigon Installation

Follow the below instructions depending on your installation method:

Pre-built Binaries (only Linux and MacOS)

Download the latest binary file from https://github.com/erigontech/erigon/releases, do the checksum and reinstall it, no other operation needed.

Docker

If you're using Docker to run Erigon, the process to upgrade to a newer version of the software is straightforward and revolves around pulling the latest Docker image and then running it.

Simply follow the Docker instructions and install and launch the new version.

Compiled from source

To upgrade Erigon to a newer version when you've originally installed it via Git and manual compilation, follow the installation instructions from step 2 "Check Out the Desired Stable Version (Tag)".

Last updated

Was this helpful?