]> git.p6c8.net - psmysqlbackup.git/commitdiff
Implemented simple compression of dump files
authorPatrick Canterino <patrick@patrick-canterino.de>
Thu, 23 Feb 2023 19:13:01 +0000 (20:13 +0100)
committerPatrick Canterino <patrick@patrick-canterino.de>
Thu, 23 Feb 2023 19:13:01 +0000 (20:13 +0100)
Limited to 2 GB due to limitations of Compress-Archive

TODO.md
psmysqlbackup.ps1

diff --git a/TODO.md b/TODO.md
index e26b5fcbb738d345666521b3f0f52850eeefac87..717b82b4f60e673002745b87472330874b7b2a5f 100644 (file)
--- a/TODO.md
+++ b/TODO.md
@@ -9,6 +9,6 @@
 - [ ] Configuration file
 - [ ] Pass configuration file by command line
 - [x] Write log file
-- [ ] Compress backups
+- [x] Compress backups
 - [ ] Add comments
 - [ ] Add README
\ No newline at end of file
index a99e18a3e94b0187a6102460f169d12daf6087f2..6177abdf5b6d30f784c8bfbce38df3a1ecba9df5 100644 (file)
@@ -27,6 +27,9 @@ $configBackupDir = 'backup'
 # Number of backups to keep, set to 0 to keep all backups
 $configBackupRotate = 7
 
+# Compress backups (limited to 2 GB due to usage of Compress-Archive)
+$configBackupCompress = $False
+
 # Directory where to store the logfiles
 $configLogDir = 'log'
 # Number of logfiles to keep, set to 0 to keep all logfiles
@@ -176,6 +179,11 @@ function Create-Backup([String]$database, [String]$target) {
     if($LastExitCode -ne 0) {
         throw "mysqldump exited with Exit code $LastExitCode"
     }
+
+    if($configBackupCompress) {
+        Compress-Archive -Path $target -DestinationPath "$target.zip"
+        Remove-Item -Path $target
+    }
 }
 function Invoke-FileRotation {
     Param (
@@ -211,7 +219,7 @@ function Invoke-FileRotation {
 
 $defaultDbExclude = @('information_schema', 'performance_schema')
 
-$patternBackupFile = '^backup-.+-\d{8,}-\d{6}\.sql$'
+$patternBackupFile = '^backup-.+-\d{8,}-\d{6}\.sql(\.zip)?$'
 $patternLogFile = '^log-\d{8,}-\d{6}\.log$'
 
 $currDaytime = Get-Date -format 'yyyyMMdd-HHmmss'
@@ -283,7 +291,12 @@ foreach($d in $databasesToBackup) {
 
     $databaseBackupFile = Join-Path -Path $databaseBackupDir -ChildPath "backup-$d-$currDaytime.sql"
 
-    Write-Log "Backing up $d to $databaseBackupFile..." -Path $logFile
+    if($configBackupCompress) {
+        Write-Log "Backing up $d to compressed file $databaseBackupFile.zip..." -Path $logFile
+    }
+    else {
+        Write-Log "Backing up $d to $databaseBackupFile..." -Path $logFile
+    }
     
     try {
         Create-Backup $d $databaseBackupFile

patrick-canterino.de