Skip to content

Commit 3037ce9

Browse files
resolved coderabbitai suggetions
1 parent f47c02b commit 3037ce9

File tree

2 files changed

+17
-6
lines changed

2 files changed

+17
-6
lines changed

devops/linux/docker/backup_restore/dgraph-backup-api.py

+16-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
port = "50010"
1111
backup_path = env_vars['DGRAPH_BACKUP_DIRECTORY']
1212

13-
if len(sys.argv) >= 1:
13+
if len(sys.argv) > 1:
1414
current_datetime = sys.argv[1]
1515
else:
1616
current_datetime = datetime.now().strftime('%Y%m%d_%H%M%S')
@@ -26,8 +26,13 @@ def fetch_data_for_id(gidList):
2626
get_expanded_golden_record = f'http://{host}:{port}/JeMPI/expandedGoldenRecords'
2727
payload = json.dumps({"uidList": gidList})
2828
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
3136

3237
def chunks(lst, n):
3338
for i in range(0, len(lst), n):
@@ -48,6 +53,9 @@ def backup_dgraph_data():
4853
if golden_records_data:
4954
for golden_record_data in golden_records_data:
5055
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
5159

5260
file_name = f'dgraph_backup_{current_datetime}.json'
5361
print(f'Total {str(len(backup_data))} Golden records backed up.')
@@ -61,7 +69,11 @@ def create_backup_json(backup_data, file_name):
6169
backup_path_folder = os.path.join(backup_path, current_datetime)
6270
create_folder_if_not_exists(backup_path_folder)
6371
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
6577
return backup_path_folder
6678

6779

devops/linux/docker/backup_restore/dgraph-restore-api.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
source ../conf.env
33
#Backup Folder Name
44

5-
BACKUP_DATE_TIME=$1
65
SCRIPT_DIR=$(cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)
76
cd ${SCRIPT_DIR}/..
87
JEMPI_DOCKER_HOME=$PWD
@@ -47,7 +46,7 @@ while true; do
4746
echo "Backup API"
4847
# Ask the user to enter a folder name
4948
echo "Backup folder Path:- ${DGRAPH_BACKUP_DIRECTORY}"
50-
pushd ${DGRAPH_BACKUP_DIRECTORY}
49+
pushd ${DGRAPH_BACKUP_DIRECTORY} || exit
5150
echo
5251
echo "Recent 5 Backups list"
5352
ls -lt --time=creation --sort=time | grep '^d' | tail -n 5

0 commit comments

Comments
 (0)