-
Notifications
You must be signed in to change notification settings - Fork 808
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Archive Node Online Migration (#1863)
* Archive Node Online Migration * Add migrate-iavl flag for online migration * Update sei cosmos * Add QMS for online migration (#1870) * Add QMS for online migration * Fix lint --------- Co-authored-by: kbhat1 <[email protected]> * Add migrate-height flag to start cmd * Bump seidb * Reduce logging * Archive Migration doc * Update form * Update * Export metric * latest height * Update start module logic * Remove migrate SS command * Enable ss store * Update archive node migration docs * More migration doc updates * Update metrics in readme * Merge main * Remove dex * Add Faq section * Add requirements section * Systemd instructions * Minor add to readme * Add more examples for migration height * Bump sei cosmos * Update error log * Update command sc migration background --------- Co-authored-by: Yiming Zang <[email protected]>
- Loading branch information
Showing
10 changed files
with
369 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,212 @@ | ||
# SeiDB Archive Migration Guide | ||
|
||
## Overview | ||
SeiDB is the next generation of chain storage in SeiV2. | ||
One issue for running SeiDB on archive nodes is that we need to keep the full state of the chain, so we can't | ||
state sync it and clear out previous iavl data. | ||
|
||
In order to run an archive node with SeiDB, we need to run a migration from iavl to sei-db. | ||
|
||
The overall process will work as follows: | ||
|
||
1. Update config to enable SeiDB (state committment + state store) | ||
2. Stop the node and Run SC Migration | ||
3. Note down MIGRATION_HEIGHT | ||
4. Re start seid with `--migrate-iavl` enabled (migrating state store in background) | ||
5. Verify migration at various sampled heights once state store is complete | ||
6. Restart seid normally and verify node runs properly | ||
7. Clear out iavl and restart seid normally, now only using SeiDB fully | ||
|
||
|
||
## Requirements | ||
|
||
### Additional Disk Space | ||
|
||
Ensure you have at least 10TB of free disk space available for the migration process. This extra space is needed because during migration, both IAVL and SeiDB state stores will exist simultaneously. Note | ||
that this is ONLY during the migration process, and will not be necessary after completion | ||
|
||
|
||
## Migration Steps | ||
|
||
### Step 1: Add SeiDB Configurations | ||
We can enable SeiDB by adding the following configs to app.toml file. | ||
Usually you can find this file under ~/.sei/config/app.toml. | ||
```bash | ||
############################################################################# | ||
### SeiDB Configuration ### | ||
############################################################################# | ||
|
||
[state-commit] | ||
# Enable defines if the SeiDB should be enabled to override existing IAVL db backend. | ||
sc-enable = true | ||
|
||
# AsyncCommitBuffer defines the size of asynchronous commit queue, this greatly improve block catching-up | ||
# performance, <=0 means synchronous commit. | ||
sc-async-commit-buffer = 100 | ||
|
||
# SnapshotKeepRecent defines how many memiavl snapshots (beyond the latest one) to keep | ||
# Recommend to set to 1 to make sure IBC relayers work. | ||
sc-keep-recent = 1 | ||
|
||
# SnapshotInterval defines the number of blocks interval the memiavl snapshot is taken, default to 10000 blocks. | ||
# Adjust based on your needs: | ||
# Setting this too low could lead to lot of extra heavy disk IO | ||
# Setting this too high could lead to slow restart | ||
sc-snapshot-interval = 10000 | ||
|
||
# SnapshotWriterLimit defines the max concurrency for taking memiavl snapshot | ||
sc-snapshot-writer-limit = 1 | ||
|
||
# CacheSize defines the size of the LRU cache for each store on top of the tree, default to 100000. | ||
sc-cache-size = 100000 | ||
|
||
[state-store] | ||
# Enable defines if the state-store should be enabled for historical queries. | ||
# In order to use state-store, you need to make sure to enable state-commit at the same time. | ||
# Validator nodes should turn this off. | ||
# State sync node or full nodes should turn this on. | ||
ss-enable = true | ||
|
||
# DBBackend defines the backend database used for state-store. | ||
# Supported backends: pebbledb, rocksdb | ||
# defaults to pebbledb (recommended) | ||
ss-backend = "pebbledb" | ||
|
||
# AsyncWriteBuffer defines the async queue length for commits to be applied to State Store | ||
# Set <= 0 for synchronous writes, which means commits also need to wait for data to be persisted in State Store. | ||
# defaults to 100 | ||
ss-async-write-buffer = 100 | ||
|
||
# KeepRecent defines the number of versions to keep in state store | ||
# Setting it to 0 means keep everything, default to 100000 | ||
ss-keep-recent = 0 | ||
|
||
# PruneIntervalSeconds defines the minimum interval in seconds + some random delay to trigger pruning. | ||
# It is more efficient to trigger pruning less frequently with large interval. | ||
# default to 600 seconds | ||
ss-prune-interval = 600 | ||
|
||
# ImportNumWorkers defines the concurrency for state sync import | ||
# defaults to 1 | ||
ss-import-num-workers = 1 | ||
``` | ||
|
||
|
||
### Step 2: Stop the node and Run SC Migration | ||
|
||
```bash | ||
systemctl stop seid | ||
seid tools migrate-iavl --home-dir /root/.sei | ||
``` | ||
|
||
You can also run this sc migration in the background: | ||
```bash | ||
seid tools migrate-iavl --home-dir /root/.sei > migrate-sc.log 2>&1 & | ||
``` | ||
|
||
This may take a couple hours to run. You will see logs of form | ||
`Start restoring SC store for height` | ||
|
||
|
||
### Step 3: Note down MIGRATION_HEIGHT | ||
Note down the latest height as outputted from the sc migration log. | ||
|
||
As an example the sc migration log would show: | ||
``` | ||
latest version: 111417590 | ||
D[2024-10-29|15:26:03.657] Finished loading IAVL tree | ||
D[2024-10-29|15:26:03.657] Finished loading IAVL tree | ||
D[2024-10-29|15:26:03.657] Finished loading IAVL tree | ||
``` | ||
|
||
Save that `latest version` (in example 111417590) as an env var $MIGRATION_HEIGHT. | ||
|
||
```bash | ||
MIGRATION_HEIGHT=<> | ||
``` | ||
|
||
|
||
### Step 4: Restart seid with background SS migration | ||
|
||
If you are using systemd, make sure to update your service configuration to use this command. | ||
Always be sure to run with these flags until migration is complete. | ||
```bash | ||
seid start --migrate-iavl --migrate-height $MIGRATION_HEIGHT --chain-id pacific-1 | ||
``` | ||
|
||
Seid will run normally and the migration will run in the background. Data from iavl | ||
will be written to SS and new writes will be directed at SS not iavl. | ||
|
||
You will see logs of form | ||
`SeiDB Archive Migration: Iterating through %s module...` and | ||
`SeiDB Archive Migration: Last 1,000,000 iterations took:...` | ||
|
||
NOTE: While this is running, any historical queries will be routed to iavl if | ||
they are for a height BEFORE the migrate-height. Any queries on heights | ||
AFTER the migrate-height will be routed to state store (pebbledb). | ||
|
||
|
||
### Step 5: Verify State Store Migration after completion | ||
Once State Store Migration is complete, you will see logs of form | ||
`SeiDB Archive Migration: DB scanning completed. Total time taken:...` | ||
|
||
You DO NOT immediately need to do anything. Your node will continue to run | ||
and will operate normally. However we added a verification tool that will iterate through | ||
all keys in iavl at a specific height and verify they exist in State Store. | ||
|
||
You should run the following command for a selection of different heights | ||
```bash | ||
seid tools verify-migration --version $VERIFICATION_HEIGHT | ||
``` | ||
|
||
This will output `Verification Succeeded` if the verification was successful. | ||
|
||
|
||
### Step 6: Restart seid normally and verify node runs properly | ||
Once the verification has completed, we can restart seid normally and verify | ||
that the node operates. | ||
|
||
If you are using systemd, make sure to update your service configuration to use this command: | ||
```bash | ||
seid start --chain-id pacific-1 | ||
``` | ||
|
||
Note how we are not using the `--migrate-iavl` and `--migration-height` flags. | ||
We can let this run for a couple hours and verify node oeprates normally. | ||
|
||
|
||
### Step 7: Clear out Iavl and restart seid | ||
Once it has been confirmed that the node has been running normally, | ||
we can proceed to clear out the iavl and restart seid normally. | ||
|
||
```bash | ||
systemctl stop seid | ||
rm -rf ~/.sei/data/application.db | ||
seid start --chain-id pacific-1 | ||
``` | ||
|
||
|
||
## Metrics | ||
|
||
During the State Store Migration, there are exported metrics that are helpful to keep track of | ||
the progress. | ||
|
||
`sei_migration_leaf_nodes_exported` keeps track of how many nodes have been exported from iavl. | ||
|
||
`sei_migration_nodes_imported` keeps track of how many nodes have been imported into SeiDB (pebbledb). | ||
|
||
Both of these metrics have a `module` label which indicates what module is currently being exported / imported. | ||
|
||
|
||
## FAQ | ||
|
||
### Can the state store migration be stopped and restarted? | ||
|
||
The state store migration can be stopped and restarted at any time. The migration | ||
process saves the latest `module` and `key` written to State Store (pebbledb) and will | ||
automatically resume the migration from that latest key once restarted. | ||
|
||
All one needs to do is restart seid with the migration command as in step 4 | ||
```bash | ||
seid start --migrate-iavl --migrate-height $MIGRATION_HEIGHT --chain-id pacific-1 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.