def get_snapshot_info(self, responseBody):
        blobsnapshotinfo_array = []
        all_failed = True
        try:
            if (responseBody != None):
                json_reponseBody = json.loads(responseBody)
                for snapshot_info in json_reponseBody['snapshotInfo']:
                    blobsnapshotinfo_array.append(
                        HostSnapshotObjects.BlobSnapshotInfo(
                            snapshot_info['isSuccessful'],
                            snapshot_info['snapshotUri'],
                            snapshot_info['errorMessage'],
                            snapshot_info['statusCode']))
                    self.logger.log(
                        "IsSuccessful:{0}, SnapshotUri:{1}, ErrorMessage:{2}, StatusCode:{3}"
                        .format(snapshot_info['isSuccessful'],
                                snapshot_info['snapshotUri'],
                                snapshot_info['errorMessage'],
                                snapshot_info['statusCode']))
                    if (snapshot_info['isSuccessful'] == 'true'):
                        all_failed = False
        except Exception as e:
            errorMsg = " deserialization of response body failed with error: %s, stack trace: %s" % (
                str(e), traceback.format_exc())
            self.logger.log(errorMsg)

        return blobsnapshotinfo_array, all_failed
Example #2
0
 def pre_snapshot(self, paras, taskId):
     statusCode = 555
     if (self.presnapshoturi is None):
         self.logger.log(
             "Failed to do the snapshot because presnapshoturi is none",
             False, 'Error')
         all_failed = True
     try:
         presnapshoturi_obj = urlparser.urlparse(self.presnapshoturi)
         if (presnapshoturi_obj is None
                 or presnapshoturi_obj.hostname is None):
             self.logger.log("Failed to parse the presnapshoturi", False,
                             'Error')
             all_failed = True
         else:
             headers = {}
             headers['Backup'] = 'true'
             headers['Content-type'] = 'application/json'
             hostPreSnapshotRequestBodyObj = HostSnapshotObjects.HostPreSnapshotRequestBody(
                 taskId, paras.snapshotTaskToken)
             body_content = json.dumps(hostPreSnapshotRequestBodyObj,
                                       cls=HandlerUtil.ComplexEncoder)
             self.logger.log('Headers : ' + str(headers))
             self.logger.log('Host Request body : ' + str(body_content))
             http_util = HttpUtil(self.logger)
             self.logger.log("start calling the presnapshot rest api")
             # initiate http call for blob-snapshot and get http response
             result, httpResp, errMsg, responseBody = http_util.HttpCallGetResponse(
                 'POST',
                 presnapshoturi_obj,
                 body_content,
                 headers=headers,
                 responseBodyRequired=True,
                 isHttpCall=True)
             self.logger.log("presnapshot responseBody: " + responseBody)
             if (httpResp != None):
                 statusCode = httpResp.status
                 if (int(statusCode) == 200 or int(statusCode) == 201) and (
                         responseBody == None or responseBody == ""):
                     self.logger.log(
                         "PreSnapshot:responseBody is empty but http status code is success"
                     )
                     statusCode = 557
                 elif (httpResp.status == 500
                       and not responseBody.startswith("{ \"error\"")):
                     self.logger.log("BHS is not runnning on host machine")
                     statusCode = 556
             else:
                 # HttpCall failed
                 statusCode = 555
                 self.logger.log("presnapshot Hitting wrong WireServer IP")
     except Exception as e:
         errorMsg = "Failed to do the pre snapshot in host with error: %s, stack trace: %s" % (
             str(e), traceback.format_exc())
         self.logger.log(errorMsg, False, 'Error')
         statusCode = 558
     HandlerUtil.HandlerUtility.add_to_telemetery_data(
         CommonVariables.hostStatusCodePreSnapshot, str(statusCode))
     return statusCode
Example #3
0
 def snapshotall(self, paras, freezer, g_fsfreeze_on, taskId):
     result = None
     blob_snapshot_info_array = []
     all_failed = True
     is_inconsistent = False
     unable_to_sleep = False
     meta_data = paras.backup_metadata
     if(self.snapshoturi is None):
         self.logger.log("Failed to do the snapshot because snapshoturi is none",False,'Error')
         all_failed = True
     try:
         snapshoturi_obj = urlparser.urlparse(self.snapshoturi)
         if(snapshoturi_obj is None or snapshoturi_obj.hostname is None):
             self.logger.log("Failed to parse the snapshoturi",False,'Error')
             all_failed = True
         else:
             diskIds = []
             body_content = ''
             headers = {}
             headers['Backup'] = 'true'
             headers['Content-type'] = 'application/json'
             hostDoSnapshotRequestBodyObj = HostSnapshotObjects.HostDoSnapshotRequestBody(taskId, diskIds, paras.snapshotTaskToken, meta_data)
             body_content = json.dumps(hostDoSnapshotRequestBodyObj, cls = HandlerUtil.ComplexEncoder)
             self.logger.log('Headers : ' + str(headers))
             self.logger.log('Host Request body : ' + str(body_content))
             http_util = HttpUtil(self.logger)
             self.logger.log("start calling the snapshot rest api")
             # initiate http call for blob-snapshot and get http response
             result, httpResp, errMsg,responseBody = http_util.HttpCallGetResponse('POST', snapshoturi_obj, body_content, headers = headers, responseBodyRequired = True, isHttpCall = True)
             self.logger.log("dosnapshot responseBody: " + responseBody)
             if(httpResp != None):
                 HandlerUtil.HandlerUtility.add_to_telemetery_data(CommonVariables.hostStatusCodeDoSnapshot, str(httpResp.status))
                 if(int(httpResp.status) == 200 or int(httpResp.status) == 201) and (responseBody == None or responseBody == "") :
                     self.logger.log("DoSnapshot: responseBody is empty but http status code is success")
                     HandlerUtil.HandlerUtility.add_to_telemetery_data(CommonVariables.hostStatusCodeDoSnapshot, str(557))
                     all_failed = True
                 elif(int(httpResp.status) == 200 or int(httpResp.status) == 201):
                     blob_snapshot_info_array, all_failed = self.get_snapshot_info(responseBody)
                 if(httpResp.status == 500 and not responseBody.startswith("{ \"error\"")):
                     HandlerUtil.HandlerUtility.add_to_telemetery_data(CommonVariables.hostStatusCodeDoSnapshot, str(556))
                     all_failed = True
             else:
                 # HttpCall failed
                 HandlerUtil.HandlerUtility.add_to_telemetery_data(CommonVariables.hostStatusCodeDoSnapshot, str(555))
                 self.logger.log("presnapshot Hitting wrong WireServer IP")
             #performing thaw
             if g_fsfreeze_on :
                 time_before_thaw = datetime.datetime.now()
                 thaw_result, unable_to_sleep = freezer.thaw_safe()
                 time_after_thaw = datetime.datetime.now()
                 HandlerUtil.HandlerUtility.add_to_telemetery_data("ThawTime", str(time_after_thaw-time_before_thaw))
                 self.logger.log('T:S thaw result ' + str(thaw_result))
                 if(thaw_result is not None and len(thaw_result.errors) > 0):
                     is_inconsistent = True
     except Exception as e:
         errorMsg = "Failed to do the snapshot in host with error: %s, stack trace: %s" % (str(e), traceback.format_exc())
         self.logger.log(errorMsg, False, 'Error')
         all_failed = True
     return blob_snapshot_info_array, all_failed, is_inconsistent, unable_to_sleep
Example #4
0
    def snapshotall_seq(self, paras, freezer, thaw_done, g_fsfreeze_on, blob_metadata):
        exceptOccurred = False
        self.logger.log("doing snapshotall now in sequence...")
        snapshot_result = SnapshotResult()
        blob_snapshot_info_array = []
        all_failed = True
        is_inconsistent = False
        thaw_done_local = thaw_done
        unable_to_sleep = False
        all_snapshots_failed = False
        try:
            blobs = paras.blobs
            if blobs is not None:
                blob_index = 0
                self.logger.log('****** 5. Snaphotting (Guest-seq) Started')
                
                for blob in blobs:
                    blobUri = blob.split("?")[0]
                    self.logger.log("index: " + str(blob_index) + " blobUri: " + str(blobUri))
                    blob_snapshot_info_array.append(HostSnapshotObjects.BlobSnapshotInfo(False, blobUri, None, 500))
                    snapshotError, snapshot_info_indexer = self.snapshot_seq(blob, blob_index, blob_metadata[blob_index])
                    if(snapshotError.errorcode != CommonVariables.success):
                        snapshot_result.errors.append(snapshotError)
                    # update blob_snapshot_info_array element properties from snapshot_info_indexer object
                    self.get_snapshot_info(snapshot_info_indexer, blob_snapshot_info_array[blob_index])
                    if (blob_snapshot_info_array[blob_index].isSuccessful == True):
                        all_failed = False
                    blob_index = blob_index + 1

                self.logger.log('****** 6. Snaphotting (Guest-seq) Completed')
                all_snapshots_failed = all_failed
                self.logger.log("Setting all_snapshots_failed to " + str(all_snapshots_failed))
                thaw_result= None
                if g_fsfreeze_on and thaw_done_local== False:
                    time_before_thaw = datetime.datetime.now()
                    thaw_result, unable_to_sleep = freezer.thaw_safe()
                    time_after_thaw = datetime.datetime.now()
                    HandlerUtil.HandlerUtility.add_to_telemetery_data("ThawTime", str(time_after_thaw-time_before_thaw))
                    thaw_done_local = True
                    self.logger.log('T:S thaw result ' + str(thaw_result))
                    if(thaw_result is not None and len(thaw_result.errors) > 0 and (snapshot_result is None or len(snapshot_result.errors) == 0)):
                        snapshot_result.errors.append(thaw_result.errors)
                        is_inconsistent= True
                return snapshot_result, blob_snapshot_info_array, all_failed, exceptOccurred, is_inconsistent, thaw_done_local, unable_to_sleep, all_snapshots_failed
            else:
                self.logger.log("the blobs are None")
                return snapshot_result, blob_snapshot_info_array, all_failed, exceptOccurred, is_inconsistent, thaw_done_local, unable_to_sleep
        except Exception as e:
            errorMsg = " Unable to perform sequential snapshot with error: %s, stack trace: %s" % (str(e), traceback.format_exc())
            self.logger.log(errorMsg)
            exceptOccurred = True
            return snapshot_result, blob_snapshot_info_array, all_failed, exceptOccurred, is_inconsistent, thaw_done_local, unable_to_sleep, all_snapshots_failed
Example #5
0
    def snapshotall_parallel(self, paras, freezer, thaw_done, g_fsfreeze_on):
        self.logger.log("doing snapshotall now in parallel...")
        snapshot_result = SnapshotResult()
        blob_snapshot_info_array = []
        all_failed = True
        exceptOccurred = False
        is_inconsistent = False
        thaw_done_local = thaw_done
        unable_to_sleep = False
        all_snapshots_failed = False
        try:
            mp_jobs = []
            global_logger = mp.Queue()
            global_error_logger = mp.Queue()
            snapshot_result_error = mp.Queue()
            snapshot_info_indexer_queue = mp.Queue()
            time_before_snapshot_start = datetime.datetime.now()
            blobs = paras.blobs
            if blobs is not None:
                # initialize blob_snapshot_info_array
                mp_jobs = []
                blob_index = 0
                for blob in blobs:
                    blobUri = blob.split("?")[0]
                    self.logger.log("index: " + str(blob_index) +
                                    " blobUri: " + str(blobUri))
                    blob_snapshot_info_array.append(
                        HostSnapshotObjects.BlobSnapshotInfo(
                            False, blobUri, None, 500))
                    mp_jobs.append(
                        mp.Process(target=self.snapshot,
                                   args=(blob, blob_index,
                                         paras.backup_metadata,
                                         snapshot_result_error,
                                         snapshot_info_indexer_queue,
                                         global_logger, global_error_logger)))
                    blob_index = blob_index + 1

                for job in mp_jobs:
                    job.start()

                time_after_snapshot_start = datetime.datetime.now()
                timeout = self.get_value_from_configfile('timeout')
                if timeout == None:
                    timeout = 60

                for job in mp_jobs:
                    job.join()
                thaw_result = None
                if g_fsfreeze_on and thaw_done_local == False:
                    time_before_thaw = datetime.datetime.now()
                    thaw_result, unable_to_sleep = freezer.thaw_safe()
                    time_after_thaw = datetime.datetime.now()
                    HandlerUtil.HandlerUtility.add_to_telemetery_data(
                        "ThawTime", str(time_after_thaw - time_before_thaw))
                    thaw_done_local = True
                    self.logger.log('T:S thaw result ' + str(thaw_result))
                    if (thaw_result is not None and len(thaw_result.errors) > 0
                            and (snapshot_result is None
                                 or len(snapshot_result.errors) == 0)):
                        is_inconsistent = True
                        snapshot_result.errors.append(thaw_result.errors)
                        return snapshot_result, blob_snapshot_info_array, all_failed, exceptOccurred, is_inconsistent, thaw_done_local, unable_to_sleep, all_snapshots_failed
                self.logger.log('end of snapshot process')
                logging = [global_logger.get() for job in mp_jobs]
                self.logger.log(str(logging))
                error_logging = [global_error_logger.get() for job in mp_jobs]
                self.logger.log(error_logging, False, 'Error')
                if not snapshot_result_error.empty():
                    results = [snapshot_result_error.get() for job in mp_jobs]
                    for result in results:
                        if (result.errorcode != CommonVariables.success):
                            snapshot_result.errors.append(result)
                if not snapshot_info_indexer_queue.empty():
                    snapshot_info_indexers = [
                        snapshot_info_indexer_queue.get() for job in mp_jobs
                    ]
                    for snapshot_info_indexer in snapshot_info_indexers:
                        # update blob_snapshot_info_array element properties from snapshot_info_indexer object
                        self.get_snapshot_info(
                            snapshot_info_indexer, blob_snapshot_info_array[
                                snapshot_info_indexer.index])
                        if (blob_snapshot_info_array[
                                snapshot_info_indexer.index].isSuccessful ==
                                True):
                            all_failed = False
                        self.logger.log(
                            "index: " + str(snapshot_info_indexer.index) +
                            " blobSnapshotUri: " +
                            str(blob_snapshot_info_array[
                                snapshot_info_indexer.index].snapshotUri))

                    all_snapshots_failed = all_failed
                    self.logger.log("Setting all_snapshots_failed to " +
                                    str(all_snapshots_failed))

                return snapshot_result, blob_snapshot_info_array, all_failed, exceptOccurred, is_inconsistent, thaw_done_local, unable_to_sleep, all_snapshots_failed
            else:
                self.logger.log("the blobs are None")
                return snapshot_result, blob_snapshot_info_array, all_failed, exceptOccurred, is_inconsistent, thaw_done_local, unable_to_sleep
        except Exception as e:
            errorMsg = " Unable to perform parallel snapshot with error: %s, stack trace: %s" % (
                str(e), traceback.format_exc())
            self.logger.log(errorMsg)
            exceptOccurred = True
            return snapshot_result, blob_snapshot_info_array, all_failed, exceptOccurred, is_inconsistent, thaw_done_local, unable_to_sleep, all_snapshots_failed
Example #6
0
    def snapshotall_parallel(self, paras, freezer, thaw_done, g_fsfreeze_on, blob_metadata):
        self.logger.log("doing snapshotall now in parallel...")
        snapshot_result = SnapshotResult()
        blob_snapshot_info_array = []
        all_failed = True
        exceptOccurred = False
        is_inconsistent = False
        thaw_done_local = thaw_done
        unable_to_sleep = False
        all_snapshots_failed = False
        set_next_backup_to_seq = False
        try:
            self.logger.log("before start of multiprocessing queues..")
            mp_jobs = []
            queue_creation_starttime = datetime.datetime.now()
            global_logger = mp.Queue()
            global_error_logger = mp.Queue()
            snapshot_result_error = mp.Queue()
            snapshot_info_indexer_queue = mp.Queue()
            time_before_snapshot_start = datetime.datetime.now()
            blobs = paras.blobs
            
            if blobs is not None:
                # initialize blob_snapshot_info_array
                mp_jobs = []
                blob_index = 0
                self.logger.log('****** 5. Snaphotting (Guest-parallel) Started')
                for blob in blobs:
                    blobUri = blob.split("?")[0]
                    self.logger.log("index: " + str(blob_index) + " blobUri: " + str(blobUri))
                    blob_snapshot_info_array.append(HostSnapshotObjects.BlobSnapshotInfo(False, blobUri, None, 500))
                    try:
                        mp_jobs.append(mp.Process(target=self.snapshot,args=(blob, blob_index, blob_metadata[blob_index], snapshot_result_error, snapshot_info_indexer_queue, global_logger, global_error_logger)))
                    except Exception as e:
                        self.logger.log("multiprocess queue creation failed")
                        all_snapshots_failed = True
                        raise Exception("Exception while creating multiprocess queue")

                    blob_index = blob_index + 1

                counter = 0
                for job in mp_jobs:
                    job.start()
                    if(counter == 0):
                        queue_creation_endtime = datetime.datetime.now()
                        timediff = queue_creation_endtime - queue_creation_starttime
                        if(timediff.seconds >= 10):
                            self.logger.log("mp queue creation took more than 10 secs. Setting next backup to sequential")
                            set_next_backup_to_seq = True
                    counter = counter + 1

                for job in mp_jobs:
                    job.join()
                self.logger.log('****** 6. Snaphotting (Guest-parallel) Completed')
                thaw_result = None
                
                if g_fsfreeze_on and thaw_done_local == False:
                    time_before_thaw = datetime.datetime.now()
                    thaw_result, unable_to_sleep = freezer.thaw_safe()
                    time_after_thaw = datetime.datetime.now()
                    HandlerUtil.HandlerUtility.add_to_telemetery_data("ThawTime", str(time_after_thaw-time_before_thaw))
                    thaw_done_local = True
                    if(set_next_backup_to_seq == True):
                        self.logger.log("Setting to sequential snapshot")
                        self.hutil.set_value_to_configfile('seqsnapshot', '1')
                    self.logger.log('T:S thaw result ' + str(thaw_result))
                    if(thaw_result is not None and len(thaw_result.errors) > 0  and (snapshot_result is None or len(snapshot_result.errors) == 0)):
                        is_inconsistent = True
                        snapshot_result.errors.append(thaw_result.errors)
                        return snapshot_result, blob_snapshot_info_array, all_failed, exceptOccurred, is_inconsistent, thaw_done_local, unable_to_sleep, all_snapshots_failed
                self.logger.log('end of snapshot process')
                logging = [global_logger.get() for job in mp_jobs]
                self.logger.log(str(logging))
                error_logging = [global_error_logger.get() for job in mp_jobs]
                self.logger.log(str(error_logging),False,'Error')
                if not snapshot_result_error.empty():
                    results = [snapshot_result_error.get() for job in mp_jobs]
                    for result in results:
                        if(result.errorcode != CommonVariables.success):
                            snapshot_result.errors.append(result)
                if not snapshot_info_indexer_queue.empty():
                    snapshot_info_indexers = [snapshot_info_indexer_queue.get() for job in mp_jobs]
                    for snapshot_info_indexer in snapshot_info_indexers:
                        # update blob_snapshot_info_array element properties from snapshot_info_indexer object
                        self.get_snapshot_info(snapshot_info_indexer, blob_snapshot_info_array[snapshot_info_indexer.index])
                        if (blob_snapshot_info_array[snapshot_info_indexer.index].isSuccessful == True):
                            all_failed = False
                        self.logger.log("index: " + str(snapshot_info_indexer.index) + " blobSnapshotUri: " + str(blob_snapshot_info_array[snapshot_info_indexer.index].snapshotUri))

                    all_snapshots_failed = all_failed
                    self.logger.log("Setting all_snapshots_failed to " + str(all_snapshots_failed))

                return snapshot_result, blob_snapshot_info_array, all_failed, exceptOccurred, is_inconsistent, thaw_done_local, unable_to_sleep, all_snapshots_failed
            else:
                self.logger.log("the blobs are None")
                return snapshot_result, blob_snapshot_info_array, all_failed, exceptOccurred, is_inconsistent, thaw_done_local, unable_to_sleep
        except Exception as e:
            errorMsg = " Unable to perform parallel snapshot with error: %s, stack trace: %s" % (str(e), traceback.format_exc())
            self.logger.log(errorMsg)
            exceptOccurred = True
            return snapshot_result, blob_snapshot_info_array, all_failed, exceptOccurred, is_inconsistent, thaw_done_local, unable_to_sleep, all_snapshots_failed