-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInfluxBackupManager.py
108 lines (79 loc) · 3.54 KB
/
InfluxBackupManager.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import os
import BackupFileManager as BFM
from Compressor import Compressor
import uuid
from CommandRunner import run_command
import shutil
class InfluxBackupManager:
INFLUX_DUMP_LOCATION = "influx"
def __init__(self, backup_name, backup_config, general_settings):
self.backup_name = backup_name
self.influx_cli = general_settings['influx_cli']
if "host" in backup_config:
self.host = backup_config["host"]
else:
self.host = None
if "org" in backup_config:
self.org = backup_config['org']
else:
self.org = None
self.token = backup_config['token']
if "store_location" in backup_config:
backup_location = backup_config['store_location']
else:
backup_location = os.path.join(InfluxBackupManager.INFLUX_DUMP_LOCATION, self.backup_name)
if "backup_file_format" in backup_config:
self.backup_format = backup_config["backup_file_format"]
else:
self.backup_format = "tgz"
if "daily_backups" in backup_config:
self.daily_backups = backup_config["daily_backups"]
else:
self.daily_backups = 7
if "weekly_backups" in backup_config:
self.weekly_backups = backup_config["weekly_backups"]
else:
self.weekly_backups = 12
if "monthly_backups" in backup_config:
self.monthly_backups = backup_config["monthly_backups"]
else:
self.monthly_backups = -1
self.backup_file_manager = BFM.BackupFileManager(self.backup_name, backup_location, self.backup_format,
self.daily_backups, self.weekly_backups,self.monthly_backups)
if 'tmp_folder' in general_settings:
self.tmp_folder = general_settings['tmp_folder']
else:
self.tmp_folder = self.backup_file_manager.get_tmp_location()
compression_type = "python"
if "compression" in general_settings:
compression_type = general_settings['compression']
self.compressor = Compressor(compression_type)
def backup(self):
if not self.backup_file_manager.backup_needed():
print("No backup needed for InfluxDB backup " + self.backup_name)
return
print("InfluxDB Backup is needed, starting to download:" + self.backup_name)
self.backup_file_manager.create_all_needed_dirs()
my_download_loc = os.path.join(self.tmp_folder, uuid.uuid4().hex)
host_details = ""
if self.host:
host_details = " --host " + self.host + " "
org_details = ""
if self.org:
org_details = " --org " + self.org + " "
#Run the backup command
run_command(self.influx_cli + " backup " + host_details + org_details + " -t " + self.token + " " + my_download_loc )
print("Finished InfluxDB Backup")
if self.backup_format == "tgz":
print("Gzipping InfluxDB backup")
tarfile_location = self.compressor.compress(my_download_loc, my_download_loc)
self.backup_file_manager.create_backups_as_needed(tarfile_location)
print("removing temporary tarred file")
print("rm " + tarfile_location)
os.unlink(tarfile_location)
else:
exit("No support for anything else atm :(")
print("removing download directory")
print("rm -rf " + my_download_loc)
shutil.rmtree(my_download_loc)
print("Finished database backup")