10
10
port = "50010"
11
11
backup_path = env_vars ['DGRAPH_BACKUP_DIRECTORY' ]
12
12
13
- if len (sys .argv ) >= 1 :
13
+ if len (sys .argv ) > 1 :
14
14
current_datetime = sys .argv [1 ]
15
15
else :
16
16
current_datetime = datetime .now ().strftime ('%Y%m%d_%H%M%S' )
@@ -26,8 +26,13 @@ def fetch_data_for_id(gidList):
26
26
get_expanded_golden_record = f'http://{ host } :{ port } /JeMPI/expandedGoldenRecords'
27
27
payload = json .dumps ({"uidList" : gidList })
28
28
headers = {'Content-Type' : 'application/json' }
29
- response = requests .post (get_expanded_golden_record , headers = headers , data = payload )
30
- return response .json () if response .status_code == 200 else None
29
+ try :
30
+ response = requests .post (get_expanded_golden_record , headers = headers , data = payload )
31
+ if response .status_code == 200 :
32
+ return response .json ()
33
+ except requests .exceptions .RequestException as e :
34
+ print (f"Failed to fetch data for ID { gidList } : { str (e )} " )
35
+ return None
31
36
32
37
def chunks (lst , n ):
33
38
for i in range (0 , len (lst ), n ):
@@ -48,6 +53,9 @@ def backup_dgraph_data():
48
53
if golden_records_data :
49
54
for golden_record_data in golden_records_data :
50
55
backup_data .append (golden_record_data )
56
+ if golden_records_data is None :
57
+ print (f"Failed to backup data for chunk: { gid_chunk } " )
58
+ continue
51
59
52
60
file_name = f'dgraph_backup_{ current_datetime } .json'
53
61
print (f'Total { str (len (backup_data ))} Golden records backed up.' )
@@ -61,7 +69,11 @@ def create_backup_json(backup_data, file_name):
61
69
backup_path_folder = os .path .join (backup_path , current_datetime )
62
70
create_folder_if_not_exists (backup_path_folder )
63
71
with open (os .path .join (backup_path_folder , file_name ), 'w' ) as json_file :
64
- json .dump (backup_data , json_file , indent = 4 )
72
+ try :
73
+ json .dump (backup_data , json_file , indent = 4 )
74
+ except IOError as e :
75
+ print (f"Failed to write backup data to file: { str (e )} " )
76
+ return None
65
77
return backup_path_folder
66
78
67
79
0 commit comments