Replication of your Besu key/value storage for incremental backup and read only replicas.
This plugin allows you to export/restore your Besu key/value storage to other supported systems. This approach would enable us to achieve the following:
- Creation of incremental backups for data archiving.
- Restoration of backups with a known good state that avoids resynchronization and validation from the network for the same data.
- Creation of a Besu cluster where one node acts as a master (writing/updating) and other nodes serve as read-only replicas.
Build the plugin:
./gradlew assemble
The compiled jar
can be found inside the following .build/distributions
folder.
Follow these recommendations on how to run a Besu plugin if you need more information.
Prerequisites:
First, clone this repository:
git clone [email protected]:41north/besu-storage-replication.git
Open IntelliJ, load the project and type the following in the terminal:
./gradlew generateIntellijRunConfigs
That will generate Intellij's Run Configuration from the intellij-run-configs.yaml
file with several useful commands (feel free to customize it as necessary).
After the run configs are generated, next type the following in the terminal:
docker-compose up
That will start Kafka as a backup mechanism. Next is to start Besu with one network by launching one of the following run config:
BESU | Dev > Run
BESU | Ropsten > Run
BESU | Mainnet > Run
Leave the client running as much as you want. It will auto backup it's storage to Kafka.
Stop the client and remove the storage folder where Besu stores the data. Next, execute the following run config: Besu | Replication ${network} Restore > Run
(where ${network}
is the network you decided to execute).
Voilá! You have restored the state of your node.
We welcome any kind of contribution or support to this project but before to do so:
- Make sure you have read the contribution guide for more details on how to submit a good PR (pull request).
Also, we are not only limited to technical contributions. Things that make us happy are:
- Add a GitHub Star to the project.
- Tweet about this project.
- Write a review or tutorial.
We have published other Besu plugins:
Also, have a look at our Awesome Besu list to find more useful stuff!
Besu Storage Replication Plugin
has been developed initially by °41North.
If you think this project would be useful for your use case and want to talk more about it, you can reach out to us via our contact form or by sending an email to [email protected]
. We try to respond within 48 hours and look forward to hearing from you.
Besu Plugin Starter
is free and open-source software licensed under the Apache 2.0 License.