1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

MCOL-5618: Fix after testing

[add] -P to restore help in mcs_backup_restore.sh
[fix] -f argument default value in both backup and restore wrapper commands
[fix] -i argument behaviour and type + default value
[fix] -P argument position and help for both backup and restore wrapper commands
[fix] disable some pylint warning for both backup and restore wrapper files
This commit is contained in:
mariadb-AlanMologorsky
2024-06-25 05:39:26 +03:00
committed by Alan Mologorsky
parent 7ec8f3df9a
commit 7b0a04270f
3 changed files with 47 additions and 33 deletions

View File

@ -2003,6 +2003,7 @@ print_restore_help_text()
-sb | --skip-bucket-data Skip restoring columnstore data in the bucket - ideal if looking to only restore mariadb server
-q | --quiet Silence verbose copy command outputs
-c | --compress Hint that the backup is compressed in X format - Options: [ pigz ]
-P | --parallel Number of parallel decompression and mbstream threads to run
-ha | --highavilability Hint for if shared storage is attached @ below on all nodes to see all data
HA LocalStorage ( /var/lib/columnstore/dataX/ )
HA S3 ( /var/lib/columnstore/storagemanager/ )
@ -2038,6 +2039,7 @@ print_restore_variables()
if [[ -n "$compress_format" ]]; then
echo "Compression: true"
echo "Compression Format: $compress_format";
echo "Decompression Threads:" "$PARALLEL_THREADS";
else
echo "Compression: false"
fi