in ManagedkdbInsights/hdb_backup/managed_kx.py [0:0]
def wait_for_volume_status(client, environmentId:str, volumeName: str, status: str='ACTIVE', sleep_sec=30, max_wait_sec=3600, show_wait=False):
if environmentId is None:
environmentId = get_kx_environment_id(client)
"""
Function polls until volume is in desired status
"""
total_wait = 0
while True and total_wait < max_wait_sec:
this_volume = get_kx_volume(client, environmentId = environmentId, volumeName=volumeName)
if this_volume is None:
print(f"Volume: {volumeName} not found")
return None
this_status = this_volume['status']
if this_status.upper() == "CREATE_FAILED":
print(f"Volume: {this_status}, total wait {datetime.timedelta(seconds=total_wait)}")
error_info = resp.get('errorInfo', None)
if error_info is not None:
print(f"Type: {error_info.get('errorType', '')}")
print(f"Message: {error_info.get('errorMessage', '')}")
print(error_info)
else:
print(resp)
return None
elif this_status.upper() != status.upper():
if show_wait:
print(f"Volume: {volumeName} status is {this_status}, total wait {datetime.timedelta(seconds=total_wait)}, waiting {sleep_sec} sec ...")
time.sleep(sleep_sec)
total_wait = total_wait + sleep_sec
continue
else:
if show_wait:
if total_wait>0:
print(f"Volume: {volumeName} status is now {this_status}, total wait {datetime.timedelta(seconds=total_wait)}")
else:
print(f"Volume: {volumeName} status is {this_status}")
return this_volume
print(f"No Volume after {datetime.timedelta(seconds=total_wait)}")