postgresql_backup. Configurable ZSTD and GZip levels.
This commit is contained in:
parent
a2f25f51a8
commit
34c2a222a3
|
@ -62,9 +62,9 @@ for PREFIX in $DATABASE_PREFIXES; do
|
|||
|
||||
# Perform the backup based on the specified format
|
||||
if [[ "$DUMP_FORMAT" == "custom" ]]; then
|
||||
pg_dump -h "$HOST" -p "$PORT" -U "$USER" -Fc --compress="zstd:21" "$DB_NAME" -f "$BACKUP_FILE"
|
||||
pg_dump -h "$HOST" -p "$PORT" -U "$USER" -Fc --compress="zstd:$ZSTD_LEVEL" "$DB_NAME" -f "$BACKUP_FILE"
|
||||
elif [[ "$DUMP_FORMAT" == "sql" ]]; then
|
||||
pg_dump -h "$HOST" -p "$PORT" -U "$USER" "$DB_NAME" | gzip -9 > "$BACKUP_FILE"
|
||||
pg_dump -h "$HOST" -p "$PORT" -U "$USER" "$DB_NAME" | gzip -$GZIP_LEVEL > "$BACKUP_FILE"
|
||||
else
|
||||
echo "Invalid DUMP_FORMAT for $PREFIX: $DUMP_FORMAT. Skipping..."
|
||||
continue
|
||||
|
|
Loading…
Reference in a new issue