Skip to content
Snippets Groups Projects
Commit 602dcedc authored by Dan Notestein's avatar Dan Notestein
Browse files

Fix the check in zfs snapshot script

parent 7454bf79
No related branches found
No related tags found
2 merge requests!66Merge develop to master for release,!53Update log rotation config
...@@ -6,7 +6,7 @@ print_help() { ...@@ -6,7 +6,7 @@ print_help() {
echo "Usage: $0 --env-file=filename" echo "Usage: $0 --env-file=filename"
} }
OPTIONS=$(getopt -o he: --long env-file:,help,zpool:,top-level-dataset: -n "$0" -- "$@") OPTIONS=$(getopt -o he:s --long env-file:,help,zpool:,top-level-dataset:,skip-empty-snapshot -n "$0" -- "$@")
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
print_help print_help
...@@ -17,6 +17,7 @@ ZPOOL="" ...@@ -17,6 +17,7 @@ ZPOOL=""
TOP_LEVEL_DATASET="" TOP_LEVEL_DATASET=""
ZPOOL_MOUNT_POINT="" ZPOOL_MOUNT_POINT=""
TOP_LEVEL_DATASET_MOUNTPOINT="" TOP_LEVEL_DATASET_MOUNTPOINT=""
SKIP_EMPTY_SNAPSHOT=false
eval set -- "$OPTIONS" eval set -- "$OPTIONS"
...@@ -34,6 +35,10 @@ while true; do ...@@ -34,6 +35,10 @@ while true; do
TOP_LEVEL_DATASET="$2" TOP_LEVEL_DATASET="$2"
shift 2 shift 2
;; ;;
--skip-empty-snapshot|-s)
SKIP_EMPTY_SNAPSHOT=true
shift
;;
--help|-h) --help|-h)
print_help print_help
exit 0 exit 0
...@@ -134,5 +139,9 @@ chown -R 1000:100 "$TOP_LEVEL_DATASET_MOUNTPOINT/logs" ...@@ -134,5 +139,9 @@ chown -R 1000:100 "$TOP_LEVEL_DATASET_MOUNTPOINT/logs"
# 105:109 is postgres:postgres inside the container # 105:109 is postgres:postgres inside the container
chown -R 105:109 "$TOP_LEVEL_DATASET_MOUNTPOINT/logs/postgresql" "$TOP_LEVEL_DATASET_MOUNTPOINT/logs/pgbadger" chown -R 105:109 "$TOP_LEVEL_DATASET_MOUNTPOINT/logs/postgresql" "$TOP_LEVEL_DATASET_MOUNTPOINT/logs/pgbadger"
# Create a snapshot called 'empty' if [ "$SKIP_EMPTY_SNAPSHOT" = false ]; then
./snapshot_zfs_datasets.sh empty # Create a snapshot called 'empty'
./snapshot_zfs_datasets.sh empty
else
echo "Skipping creation of 'empty' snapshot."
fi
...@@ -13,9 +13,10 @@ print_help() { ...@@ -13,9 +13,10 @@ print_help() {
echo " dataset, then swap back afterwards. That way the large logs files aren't" echo " dataset, then swap back afterwards. That way the large logs files aren't"
echo " of the snapshots. This is a lot faster, but makes managing datasets more" echo " of the snapshots. This is a lot faster, but makes managing datasets more"
echo " complicated, so only use it if you really need to" echo " complicated, so only use it if you really need to"
echo " --force, -f continue without prompting, even if warnings are detected"
} }
OPTIONS=$(getopt -o he:pt:l: --long env-file:,help,zpool:,top-level-dataset:,public-snapshot,temp-dir:,swap-logs-with-dataset: -n "$0" -- "$@") OPTIONS=$(getopt -o he:pt:l:f --long env-file:,help,zpool:,top-level-dataset:,public-snapshot,temp-dir:,swap-logs-with-dataset:,force -n "$0" -- "$@")
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
print_help print_help
...@@ -29,6 +30,7 @@ TOP_LEVEL_DATASET_MOUNTPOINT="" ...@@ -29,6 +30,7 @@ TOP_LEVEL_DATASET_MOUNTPOINT=""
PUBLIC_SNAPSHOT=0 PUBLIC_SNAPSHOT=0
SWAP_LOGS_DATASET="" SWAP_LOGS_DATASET=""
TMPDIR=/tmp TMPDIR=/tmp
FORCE=0
eval set -- "$OPTIONS" eval set -- "$OPTIONS"
...@@ -58,6 +60,10 @@ while true; do ...@@ -58,6 +60,10 @@ while true; do
SWAP_LOGS_DATASET="$2" SWAP_LOGS_DATASET="$2"
shift 2 shift 2
;; ;;
--force|-f)
FORCE=1
shift 2
;;
--help|-h) --help|-h)
print_help print_help
exit 0 exit 0
...@@ -141,7 +147,7 @@ if [ "$SNAPSHOT_NAME" != "empty" ]; then ...@@ -141,7 +147,7 @@ if [ "$SNAPSHOT_NAME" != "empty" ]; then
fi fi
last_shared_memory_write=$(stat -c %Y "${TOP_LEVEL_DATASET_MOUNTPOINT}/shared_memory/shared_memory.bin") last_shared_memory_write=$(stat -c %Y "${TOP_LEVEL_DATASET_MOUNTPOINT}/shared_memory/shared_memory.bin")
last_blockchain_write=$(find "${TOP_LEVEL_DATASET_MOUNTPOINT}/blockchain" -type f -printf '%T@\n' | sort -n | tail -1) last_blockchain_write=$(find "${TOP_LEVEL_DATASET_MOUNTPOINT}/blockchain" -type f -printf '%T@\n' | sort -n | tail -1 | cut -d. -f1)
if [ -z "$last_blockchain_write" ]; then if [ -z "$last_blockchain_write" ]; then
echo "Warning: No files found in the blockchain directory" echo "Warning: No files found in the blockchain directory"
...@@ -152,12 +158,16 @@ if [ "$SNAPSHOT_NAME" != "empty" ]; then ...@@ -152,12 +158,16 @@ if [ "$SNAPSHOT_NAME" != "empty" ]; then
if [ $time_diff -gt 300 ] || [ $time_diff -lt -300 ]; then if [ $time_diff -gt 300 ] || [ $time_diff -lt -300 ]; then
echo "Warning: The shared_memory.bin file was not written to within 5 minutes of the last write to a file in the blockchain directory." echo "Warning: The shared_memory.bin file was not written to within 5 minutes of the last write to a file in the blockchain directory."
read -p "Do you want to continue? (y/n): " choice if [ "$FORCE" -eq 1 ]; then
case "$choice" in echo "Continuing due to --force option."
y|Y ) echo "Continuing...";; else
n|N ) echo "Aborting."; exit 1;; read -p "Do you want to continue? (y/n): " choice
* ) echo "Invalid input. Aborting."; exit 1;; case "$choice" in
esac y|Y ) echo "Continuing...";;
n|N ) echo "Aborting."; exit 1;;
* ) echo "Invalid input. Aborting."; exit 1;;
esac
fi
fi fi
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment