- If you have not yet played the tutorial, please do so. It takes about an hour, but it's well worth the effort, as it gives you basic survival skills. This guide will assume you've completed it.
I hereby claim:
- I am djkazic on github.
- I am synthlock (https://keybase.io/synthlock) on keybase.
- I have a public key ASDrlbGcmHJnUqChG3NSgpHhorKPjey_HCSIv8SYhy_qlQo
To claim this, I am signing this object:
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
#!/bin/bash | |
# Allows you to use a [tank] and [reserve] pool | |
# Set vars for best results | |
if [ "$#" != 4 ]; then | |
echo " Usage: ./defrag <src-pool> <src-dataset> <dest-pool> <grub-disk>" | |
echo '' | |
echo " Example: ./defrag tank os reserve /dev/sda" | |
exit 1 | |
fi |
I hereby claim:
- I am djkazic on github.
- I am kevin_lightning (https://keybase.io/kevin_lightning) on keybase.
- I have a public key ASBDAdIIp44kp3xvKVQtvu2uOOr8rlWMKtLehEV7Xr-H3go
To claim this, I am signing this object:
Today, LND supports using several database backends with the default being bbolt.
Postgres represents a more battle-tested deployment of a DB and comes with some features of interest that benefit performance and data durability:
- Async / sync replication
- Vacuum for dead tuples cleanup
- (with SQL schema) optimizations around index use