-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feature request] Write bbolt databases to two disk locations synchronously #6614
Comments
This is essentially building a distributed data storage, won't say it's easy. How about using |
CLN just allows to configure two SQLite databases. Or use replication with PostgreSQL. |
I think SQLite offers this as a feature natively, while |
Yep, the main options today are |
In terms of just a local database, your main options are various RAID options, and filesystems like zfs and btrfs that natively handle things like this a and are extremely reliable. Closing this for now since we offer two replicated DB types, and once |
Also re |
Background
Probably the easiest way to enable much a safer backup solution for most users is to allow them to use two databases on two different physical drives that are synchronously written to (i.e. second one is a copy of the first, reading is done from the first).
The text was updated successfully, but these errors were encountered: