Ejemplo n.º 1
0
class PilotStatusAgent(AgentModule):
  """
      The specific agents must provide the following methods:
        - initialize() for initial settings
        - beginExecution()
        - execute() - the main method called in the agent cycle
        - endExecution()
        - finalize() - the graceful exit of the method, this one is usually used
                   for the agent restart
  """

  queryStateList = ['Ready', 'Submitted', 'Running', 'Waiting', 'Scheduled']
  finalStateList = ['Done', 'Aborted', 'Cleared', 'Deleted', 'Failed']

  def __init__(self, *args, **kwargs):
    """ c'tor
    """
    AgentModule.__init__(self, *args, **kwargs)

    self.jobDB = None
    self.pilotDB = None
    self.diracadmin = None

  #############################################################################
  def initialize(self):
    """Sets defaults
    """

    self.am_setOption('PollingTime', 120)
    self.am_setOption('GridEnv', '')
    self.am_setOption('PilotStalledDays', 3)
    self.pilotDB = PilotAgentsDB()
    self.diracadmin = DiracAdmin()
    self.jobDB = JobDB()
    self.clearPilotsDelay = self.am_getOption('ClearPilotsDelay', 30)
    self.clearAbortedDelay = self.am_getOption('ClearAbortedPilotsDelay', 7)
    self.WMSAdministrator = WMSAdministratorClient()

    return S_OK()

  #############################################################################
  def execute(self):
    """The PilotAgent execution method.
    """

    self.pilotStalledDays = self.am_getOption('PilotStalledDays', 3)
    self.gridEnv = self.am_getOption('GridEnv')
    if not self.gridEnv:
      # No specific option found, try a general one
      setup = gConfig.getValue('/DIRAC/Setup', '')
      if setup:
        instance = gConfig.getValue('/DIRAC/Setups/%s/WorkloadManagement' % setup, '')
        if instance:
          self.gridEnv = gConfig.getValue('/Systems/WorkloadManagement/%s/GridEnv' % instance, '')
    result = self.pilotDB._getConnection()
    if result['OK']:
      connection = result['Value']
    else:
      return result

    # Now handle pilots not updated in the last N days (most likely the Broker is no
    # longer available) and declare them Deleted.
    result = self.handleOldPilots(connection)

    connection.close()

    result = self.WMSAdministrator.clearPilots(self.clearPilotsDelay, self.clearAbortedDelay)
    if not result['OK']:
      self.log.warn('Failed to clear old pilots in the PilotAgentsDB')

    return S_OK()

  def clearWaitingPilots(self, condDict):
    """ Clear pilots in the faulty Waiting state
    """

    last_update = Time.dateTime() - MAX_WAITING_STATE_LENGTH * Time.hour
    clearDict = {'Status': 'Waiting',
                 'OwnerDN': condDict['OwnerDN'],
                 'OwnerGroup': condDict['OwnerGroup'],
                 'GridType': condDict['GridType'],
                 'Broker': condDict['Broker']}
    result = self.pilotDB.selectPilots(clearDict, older=last_update)
    if not result['OK']:
      self.log.warn('Failed to get the Pilot Agents for Waiting state')
      return result
    if not result['Value']:
      return S_OK()
    refList = result['Value']

    for pilotRef in refList:
      self.log.info('Setting Waiting pilot to Stalled: %s' % pilotRef)
      result = self.pilotDB.setPilotStatus(pilotRef, 'Stalled', statusReason='Exceeded max waiting time')

    return S_OK()

  def clearParentJob(self, pRef, pDict, connection):
    """ Clear the parameteric parent job from the PilotAgentsDB
    """

    childList = pDict['ChildRefs']

    # Check that at least one child is in the database
    children_ok = False
    for child in childList:
      result = self.pilotDB.getPilotInfo(child, conn=connection)
      if result['OK']:
        if result['Value']:
          children_ok = True

    if children_ok:
      return self.pilotDB.deletePilot(pRef, conn=connection)
    else:
      self.log.verbose('Adding children for parent %s' % pRef)
      result = self.pilotDB.getPilotInfo(pRef)
      parentInfo = result['Value'][pRef]
      tqID = parentInfo['TaskQueueID']
      ownerDN = parentInfo['OwnerDN']
      ownerGroup = parentInfo['OwnerGroup']
      broker = parentInfo['Broker']
      gridType = parentInfo['GridType']
      result = self.pilotDB.addPilotTQReference(childList, tqID, ownerDN, ownerGroup,
                                                broker=broker, gridType=gridType)
      if not result['OK']:
        return result
      children_added = True
      for chRef, chDict in pDict['ChildDicts'].items():
        result = self.pilotDB.setPilotStatus(chRef, chDict['Status'],
                                             destination=chDict['DestinationSite'],
                                             conn=connection)
        if not result['OK']:
          children_added = False
      if children_added:
        result = self.pilotDB.deletePilot(pRef, conn=connection)
      else:
        return S_ERROR('Failed to add children')
    return S_OK()

  def handleOldPilots(self, connection):
    """
      select all pilots that have not been updated in the last N days and declared them
      Deleted, accounting for them.
    """
    pilotsToAccount = {}
    timeLimitToConsider = Time.toString(Time.dateTime() - Time.day * self.pilotStalledDays)
    result = self.pilotDB.selectPilots({'Status': self.queryStateList},
                                       older=timeLimitToConsider,
                                       timeStamp='LastUpdateTime')
    if not result['OK']:
      self.log.error('Failed to get the Pilot Agents')
      return result
    if not result['Value']:
      return S_OK()

    refList = result['Value']
    result = self.pilotDB.getPilotInfo(refList)
    if not result['OK']:
      self.log.error('Failed to get Info for Pilot Agents')
      return result

    pilotsDict = result['Value']

    for pRef in pilotsDict:
      if pilotsDict[pRef].get('Jobs') and self._checkJobLastUpdateTime(pilotsDict[pRef]['Jobs'], self.pilotStalledDays):
        self.log.debug('%s should not be deleted since one job of %s is running.' %
                       (str(pRef), str(pilotsDict[pRef]['Jobs'])))
        continue
      deletedJobDict = pilotsDict[pRef]
      deletedJobDict['Status'] = 'Deleted'
      deletedJobDict['StatusDate'] = Time.dateTime()
      pilotsToAccount[pRef] = deletedJobDict
      if len(pilotsToAccount) > 100:
        self.accountPilots(pilotsToAccount, connection)
        self._killPilots(pilotsToAccount)
        pilotsToAccount = {}

    self.accountPilots(pilotsToAccount, connection)
    self._killPilots(pilotsToAccount)

    return S_OK()

  def accountPilots(self, pilotsToAccount, connection):
    """ account for pilots
    """
    accountingFlag = False
    pae = self.am_getOption('PilotAccountingEnabled', 'yes')
    if pae.lower() == "yes":
      accountingFlag = True

    if not pilotsToAccount:
      self.log.info('No pilots to Account')
      return S_OK()

    accountingSent = False
    if accountingFlag:
      retVal = self.pilotDB.getPilotInfo(pilotsToAccount.keys(), conn=connection)
      if not retVal['OK']:
        self.log.error('Fail to retrieve Info for pilots', retVal['Message'])
        return retVal
      dbData = retVal['Value']
      for pref in dbData:
        if pref in pilotsToAccount:
          if dbData[pref]['Status'] not in self.finalStateList:
            dbData[pref]['Status'] = pilotsToAccount[pref]['Status']
            dbData[pref]['DestinationSite'] = pilotsToAccount[pref]['DestinationSite']
            dbData[pref]['LastUpdateTime'] = pilotsToAccount[pref]['StatusDate']

      retVal = self.__addPilotsAccountingReport(dbData)
      if not retVal['OK']:
        self.log.error('Fail to retrieve Info for pilots', retVal['Message'])
        return retVal

      self.log.info("Sending accounting records...")
      retVal = gDataStoreClient.commit()
      if not retVal['OK']:
        self.log.error("Can't send accounting reports", retVal['Message'])
      else:
        self.log.info("Accounting sent for %s pilots" % len(pilotsToAccount))
        accountingSent = True

    if not accountingFlag or accountingSent:
      for pRef in pilotsToAccount:
        pDict = pilotsToAccount[pRef]
        self.log.verbose('Setting Status for %s to %s' % (pRef, pDict['Status']))
        self.pilotDB.setPilotStatus(pRef,
                                    pDict['Status'],
                                    pDict['DestinationSite'],
                                    pDict['StatusDate'],
                                    conn=connection)

    return S_OK()

  def __addPilotsAccountingReport(self, pilotsData):
    """ fill accounting data
    """
    for pRef in pilotsData:
      pData = pilotsData[pRef]
      pA = PilotAccounting()
      pA.setEndTime(pData['LastUpdateTime'])
      pA.setStartTime(pData['SubmissionTime'])
      retVal = CS.getUsernameForDN(pData['OwnerDN'])
      if not retVal['OK']:
        userName = '******'
        self.log.error("Can't determine username for dn:", pData['OwnerDN'])
      else:
        userName = retVal['Value']
      pA.setValueByKey('User', userName)
      pA.setValueByKey('UserGroup', pData['OwnerGroup'])
      result = getSiteForCE(pData['DestinationSite'])
      if result['OK'] and result['Value'].strip():
        pA.setValueByKey('Site', result['Value'].strip())
      else:
        pA.setValueByKey('Site', 'Unknown')
      pA.setValueByKey('GridCE', pData['DestinationSite'])
      pA.setValueByKey('GridMiddleware', pData['GridType'])
      pA.setValueByKey('GridResourceBroker', pData['Broker'])
      pA.setValueByKey('GridStatus', pData['Status'])
      if 'Jobs' not in pData:
        pA.setValueByKey('Jobs', 0)
      else:
        pA.setValueByKey('Jobs', len(pData['Jobs']))
      self.log.verbose("Added accounting record for pilot %s" % pData['PilotID'])
      retVal = gDataStoreClient.addRegister(pA)
      if not retVal['OK']:
        return retVal
    return S_OK()

  def _killPilots(self, acc):
    for i in sorted(acc.keys()):
      result = self.diracadmin.getPilotInfo(i)
      if result['OK'] and i in result['Value'] and 'Status' in result['Value'][i]:
        ret = self.diracadmin.killPilot(str(i))
        if ret['OK']:
          self.log.info("Successfully deleted: %s (Status : %s)" % (i, result['Value'][i]['Status']))
        else:
          self.log.error("Failed to delete pilot: ", "%s : %s" % (i, ret['Message']))
      else:
        self.log.error("Failed to get pilot info", "%s : %s" % (i, str(result)))

  def _checkJobLastUpdateTime(self, joblist, StalledDays):
    timeLimitToConsider = Time.dateTime() - Time.day * StalledDays
    ret = False
    for jobID in joblist:
      result = self.jobDB.getJobAttributes(int(jobID))
      if result['OK']:
        if 'LastUpdateTime' in result['Value']:
          lastUpdateTime = result['Value']['LastUpdateTime']
          if Time.fromString(lastUpdateTime) > timeLimitToConsider:
            ret = True
            self.log.debug(
                'Since %s updates LastUpdateTime on %s this does not to need to be deleted.' %
                (str(jobID), str(lastUpdateTime)))
            break
      else:
        self.log.error("Error taking job info from DB", result['Message'])
    return ret
Ejemplo n.º 2
0
class PilotStatusAgent(AgentModule):
    """
      The specific agents must provide the following methods:
      - initialize() for initial settings
      - beginExecution()
      - execute() - the main method called in the agent cycle
      - endExecution()
      - finalize() - the graceful exit of the method, this one is usually used
                 for the agent restart
  """

    queryStateList = ["Ready", "Submitted", "Running", "Waiting", "Scheduled"]
    finalStateList = ["Done", "Aborted", "Cleared", "Deleted", "Failed"]
    identityFieldsList = ["OwnerDN", "OwnerGroup", "GridType", "Broker"]
    eligibleGridTypes = ["gLite"]

    #############################################################################
    def initialize(self):
        """Sets defaults
    """

        self.am_setOption("PollingTime", 120)
        self.am_setOption("GridEnv", "")
        self.am_setOption("PilotStalledDays", 3)
        self.pilotDB = PilotAgentsDB()
        return S_OK()

    #############################################################################
    def execute(self):
        """The PilotAgent execution method.
    """

        self.pilotStalledDays = self.am_getOption("PilotStalledDays", 3)
        self.gridEnv = self.am_getOption("GridEnv")
        if not self.gridEnv:
            # No specific option found, try a general one
            setup = gConfig.getValue("/DIRAC/Setup", "")
            if setup:
                instance = gConfig.getValue("/DIRAC/Setups/%s/WorkloadManagement" % setup, "")
                if instance:
                    self.gridEnv = gConfig.getValue("/Systems/WorkloadManagement/%s/GridEnv" % instance, "")
        result = self.pilotDB._getConnection()
        if result["OK"]:
            connection = result["Value"]
        else:
            return result

        result = self.pilotDB.getPilotGroups(self.identityFieldsList, {"Status": self.queryStateList})
        if not result["OK"]:
            self.log.error("Fail to get identities Groups", result["Message"])
            return result
        if not result["Value"]:
            return S_OK()

        pilotsToAccount = {}

        for ownerDN, ownerGroup, gridType, broker in result["Value"]:

            if not gridType in self.eligibleGridTypes:
                continue

            self.log.verbose("Getting pilots for %s:%s @ %s %s" % (ownerDN, ownerGroup, gridType, broker))

            condDict1 = {
                "Status": "Done",
                "StatusReason": "Report from JobAgent",
                "OwnerDN": ownerDN,
                "OwnerGroup": ownerGroup,
                "GridType": gridType,
                "Broker": broker,
            }

            condDict2 = {
                "Status": self.queryStateList,
                "OwnerDN": ownerDN,
                "OwnerGroup": ownerGroup,
                "GridType": gridType,
                "Broker": broker,
            }

            for condDict in [condDict1, condDict2]:
                result = self.clearWaitingPilots(condDict)
                if not result["OK"]:
                    self.log.warn("Failed to clear Waiting Pilot Jobs")

                result = self.pilotDB.selectPilots(condDict)
                if not result["OK"]:
                    self.log.warn("Failed to get the Pilot Agents")
                    return result
                if not result["Value"]:
                    continue
                refList = result["Value"]

                ret = gProxyManager.getPilotProxyFromDIRACGroup(ownerDN, ownerGroup)
                if not ret["OK"]:
                    self.log.error(ret["Message"])
                    self.log.error("Could not get proxy:", 'User "%s", Group "%s"' % (ownerDN, ownerGroup))
                    continue
                proxy = ret["Value"]

                self.log.verbose(
                    "Getting status for %s pilots for owner %s and group %s" % (len(refList), ownerDN, ownerGroup)
                )

                for start_index in range(0, len(refList), MAX_JOBS_QUERY):
                    refsToQuery = refList[start_index : start_index + MAX_JOBS_QUERY]
                    self.log.verbose(
                        "Querying %d pilots of %s starting at %d" % (len(refsToQuery), len(refList), start_index)
                    )
                    result = self.getPilotStatus(proxy, gridType, refsToQuery)
                    if not result["OK"]:
                        if result["Message"] == "Broker not Available":
                            self.log.error("Broker %s not Available" % broker)
                            break
                        self.log.warn("Failed to get pilot status:")
                        self.log.warn("%s:%s @ %s" % (ownerDN, ownerGroup, gridType))
                        continue

                    statusDict = result["Value"]
                    for pRef in statusDict:
                        pDict = statusDict[pRef]
                        if pDict:
                            if pDict["isParent"]:
                                self.log.verbose("Clear parametric parent %s" % pRef)
                                result = self.clearParentJob(pRef, pDict, connection)
                                if not result["OK"]:
                                    self.log.warn(result["Message"])
                                else:
                                    self.log.info("Parametric parent removed: %s" % pRef)
                            if pDict["FinalStatus"]:
                                self.log.verbose("Marking Status for %s to %s" % (pRef, pDict["Status"]))
                                pilotsToAccount[pRef] = pDict
                            else:
                                self.log.verbose("Setting Status for %s to %s" % (pRef, pDict["Status"]))
                                result = self.pilotDB.setPilotStatus(
                                    pRef,
                                    pDict["Status"],
                                    pDict["DestinationSite"],
                                    updateTime=pDict["StatusDate"],
                                    conn=connection,
                                )

                    if len(pilotsToAccount) > 100:
                        self.accountPilots(pilotsToAccount, connection)
                        pilotsToAccount = {}

        self.accountPilots(pilotsToAccount, connection)
        # Now handle pilots not updated in the last N days (most likely the Broker is no
        # longer available) and declare them Deleted.
        result = self.handleOldPilots(connection)

        connection.close()

        return S_OK()

    def clearWaitingPilots(self, condDict):
        """ Clear pilots in the faulty Waiting state
    """

        last_update = Time.dateTime() - MAX_WAITING_STATE_LENGTH * Time.hour
        clearDict = {
            "Status": "Waiting",
            "OwnerDN": condDict["OwnerDN"],
            "OwnerGroup": condDict["OwnerGroup"],
            "GridType": condDict["GridType"],
            "Broker": condDict["Broker"],
        }
        result = self.pilotDB.selectPilots(clearDict, older=last_update)
        if not result["OK"]:
            self.log.warn("Failed to get the Pilot Agents fpr Waiting state")
            return result
        if not result["Value"]:
            return S_OK()
        refList = result["Value"]

        for pilotRef in refList:
            self.log.info("Setting Waiting pilot to Aborted: %s" % pilotRef)
            result = self.pilotDB.setPilotStatus(pilotRef, "Stalled", statusReason="Exceeded max waiting time")

        return S_OK()

    def clearParentJob(self, pRef, pDict, connection):
        """ Clear the parameteric parent job from the PilotAgentsDB
    """

        childList = pDict["ChildRefs"]

        # Check that at least one child is in the database
        children_ok = False
        for child in childList:
            result = self.pilotDB.getPilotInfo(child, conn=connection)
            if result["OK"]:
                if result["Value"]:
                    children_ok = True

        if children_ok:
            return self.pilotDB.deletePilot(pRef, conn=connection)
        else:
            self.log.verbose("Adding children for parent %s" % pRef)
            result = self.pilotDB.getPilotInfo(pRef)
            parentInfo = result["Value"][pRef]
            tqID = parentInfo["TaskQueueID"]
            ownerDN = parentInfo["OwnerDN"]
            ownerGroup = parentInfo["OwnerGroup"]
            broker = parentInfo["Broker"]
            gridType = parentInfo["GridType"]
            result = self.pilotDB.addPilotTQReference(
                childList, tqID, ownerDN, ownerGroup, broker=broker, gridType=gridType
            )
            if not result["OK"]:
                return result
            children_added = True
            for chRef, chDict in pDict["ChildDicts"].items():
                result = self.pilotDB.setPilotStatus(
                    chRef, chDict["Status"], destination=chDict["DestinationSite"], conn=connection
                )
                if not result["OK"]:
                    children_added = False
            if children_added:
                result = self.pilotDB.deletePilot(pRef, conn=connection)
            else:
                return S_ERROR("Failed to add children")
        return S_OK()

    def handleOldPilots(self, connection):
        """
      select all pilots that have not been updated in the last N days and declared them 
      Deleted, accounting for them.
    """
        pilotsToAccount = {}
        timeLimitToConsider = Time.toString(Time.dateTime() - Time.day * self.pilotStalledDays)
        # A.T. Below looks to be a bug
        # result = self.pilotDB.selectPilots( {'Status':self.queryStateList} , older=None, timeStamp='LastUpdateTime' )
        result = self.pilotDB.selectPilots(
            {"Status": self.queryStateList}, older=timeLimitToConsider, timeStamp="LastUpdateTime"
        )
        if not result["OK"]:
            self.log.error("Failed to get the Pilot Agents")
            return result
        if not result["Value"]:
            return S_OK()

        refList = result["Value"]
        result = self.pilotDB.getPilotInfo(refList)
        if not result["OK"]:
            self.log.error("Failed to get Info for Pilot Agents")
            return result

        pilotsDict = result["Value"]

        for pRef in pilotsDict:
            deletedJobDict = pilotsDict[pRef]
            deletedJobDict["Status"] = "Deleted"
            deletedJobDict["StatusDate"] = Time.dateTime()
            pilotsToAccount[pRef] = deletedJobDict
            if len(pilotsToAccount) > 100:
                self.accountPilots(pilotsToAccount, connection)
                pilotsToAccount = {}

        self.accountPilots(pilotsToAccount, connection)

        return S_OK()

    def accountPilots(self, pilotsToAccount, connection):
        """ account for pilots
    """
        accountingFlag = False
        pae = self.am_getOption("PilotAccountingEnabled", "yes")
        if pae.lower() == "yes":
            accountingFlag = True

        if not pilotsToAccount:
            self.log.info("No pilots to Account")
            return S_OK()

        accountingSent = False
        if accountingFlag:
            retVal = self.pilotDB.getPilotInfo(pilotsToAccount.keys(), conn=connection)
            if not retVal["OK"]:
                self.log.error("Fail to retrieve Info for pilots", retVal["Message"])
                return retVal
            dbData = retVal["Value"]
            for pref in dbData:
                if pref in pilotsToAccount:
                    if dbData[pref]["Status"] not in self.finalStateList:
                        dbData[pref]["Status"] = pilotsToAccount[pref]["Status"]
                        dbData[pref]["DestinationSite"] = pilotsToAccount[pref]["DestinationSite"]
                        dbData[pref]["LastUpdateTime"] = pilotsToAccount[pref]["StatusDate"]

            retVal = self.__addPilotsAccountingReport(dbData)
            if not retVal["OK"]:
                self.log.error("Fail to retrieve Info for pilots", retVal["Message"])
                return retVal

            self.log.info("Sending accounting records...")
            retVal = gDataStoreClient.commit()
            if not retVal["OK"]:
                self.log.error("Can't send accounting reports", retVal["Message"])
            else:
                self.log.info("Accounting sent for %s pilots" % len(pilotsToAccount))
                accountingSent = True

        if not accountingFlag or accountingSent:
            for pRef in pilotsToAccount:
                pDict = pilotsToAccount[pRef]
                self.log.verbose("Setting Status for %s to %s" % (pRef, pDict["Status"]))
                self.pilotDB.setPilotStatus(
                    pRef, pDict["Status"], pDict["DestinationSite"], pDict["StatusDate"], conn=connection
                )

        return S_OK()

    #############################################################################
    def getPilotStatus(self, proxy, gridType, pilotRefList):
        """ Get GRID job status information using the job's owner proxy and
        GRID job IDs. Returns for each JobID its status in the GRID WMS and
        its destination CE as a tuple of 2 elements
    """

        if gridType == "LCG":
            cmd = ["edg-job-status"]
        elif gridType == "gLite":
            cmd = ["glite-wms-job-status"]
        else:
            return S_ERROR()
        cmd.extend(pilotRefList)

        start = time.time()
        ret = executeGridCommand(proxy, cmd, self.gridEnv)
        self.log.info("%s Job Status Execution Time for %d jobs:" % (gridType, len(pilotRefList)), time.time() - start)

        if not ret["OK"]:
            self.log.error("Failed to execute %s Job Status" % gridType, ret["Message"])
            return S_ERROR()
        if ret["Value"][0] != 0:
            stderr = ret["Value"][2]
            stdout = ret["Value"][1]
            deleted = 0
            resultDict = {}
            status = "Deleted"
            destination = "Unknown"
            deletedJobDict = {
                "Status": status,
                "DestinationSite": destination,
                "StatusDate": Time.dateTime(),
                "isChild": False,
                "isParent": False,
                "ParentRef": False,
                "FinalStatus": status in self.finalStateList,
                "ChildRefs": [],
            }
            # Glite returns this error for Deleted jobs to std.err
            for job in List.fromChar(stderr, "\nUnable to retrieve the status for:")[1:]:
                pRef = List.fromChar(job, "\n")[0].strip()
                resultDict[pRef] = deletedJobDict
                self.pilotDB.setPilotStatus(pRef, "Deleted")
                deleted += 1
            # EDG returns a similar error for Deleted jobs to std.out
            for job in List.fromChar(stdout, "\nUnable to retrieve the status for:")[1:]:
                pRef = List.fromChar(job, "\n")[0].strip()
                if re.search("No such file or directory: no matching jobs found", job):
                    resultDict[pRef] = deletedJobDict
                    self.pilotDB.setPilotStatus(pRef, "Deleted")
                    deleted += 1
                if re.search("edg_wll_JobStatus: Connection refused: edg_wll_ssl_connect()", job):
                    # the Broker is not accesible
                    return S_ERROR("Broker not Available")
            if not deleted:
                self.log.error(
                    "Error executing %s Job Status:" % gridType, str(ret["Value"][0]) + "\n".join(ret["Value"][1:3])
                )
                return S_ERROR()
            return S_OK(resultDict)

        stdout = ret["Value"][1]
        stderr = ret["Value"][2]
        resultDict = {}
        for job in List.fromChar(stdout, "\nStatus info for the Job :")[1:]:
            pRef = List.fromChar(job, "\n")[0].strip()
            resultDict[pRef] = self.__parseJobStatus(job, gridType)

        return S_OK(resultDict)

    def __parseJobStatus(self, job, gridType):
        """ Parse output of grid pilot status command
    """

        statusRE = "Current Status:\s*(\w*)"
        destinationRE = "Destination:\s*([\w\.-]*)"
        statusDateLCGRE = "reached on:\s*....(.*)"
        submittedDateRE = "Submitted:\s*....(.*)"
        statusFailedRE = "Current Status:.*\(Failed\)"

        status = None
        destination = "Unknown"
        statusDate = None
        submittedDate = None

        try:
            status = re.search(statusRE, job).group(1)
            if status == "Done" and re.search(statusFailedRE, job):
                status = "Failed"
            if re.search(destinationRE, job):
                destination = re.search(destinationRE, job).group(1)
            if gridType == "LCG" and re.search(statusDateLCGRE, job):
                statusDate = re.search(statusDateLCGRE, job).group(1)
                statusDate = time.strftime("%Y-%m-%d %H:%M:%S", time.strptime(statusDate, "%b %d %H:%M:%S %Y"))
            if gridType == "gLite" and re.search(submittedDateRE, job):
                submittedDate = re.search(submittedDateRE, job).group(1)
                submittedDate = time.strftime("%Y-%m-%d %H:%M:%S", time.strptime(submittedDate, "%b %d %H:%M:%S %Y %Z"))
        except:
            self.log.exception("Error parsing %s Job Status output:\n" % gridType, job)

        isParent = False
        if re.search("Nodes information", job):
            isParent = True
        isChild = False
        if re.search("Parent Job", job):
            isChild = True

        if status == "Running":
            # Pilots can be in Running state for too long, due to bugs in the WMS
            if statusDate:
                statusTime = Time.fromString(statusDate)
                delta = Time.dateTime() - statusTime
                if delta > 4 * Time.day:
                    self.log.info("Setting pilot status to Deleted after 4 days in Running")
                    status = "Deleted"
                    statusDate = statusTime + 4 * Time.day
            elif submittedDate:
                statusTime = Time.fromString(submittedDate)
                delta = Time.dateTime() - statusTime
                if delta > 7 * Time.day:
                    self.log.info("Setting pilot status to Deleted more than 7 days after submission still in Running")
                    status = "Deleted"
                    statusDate = statusTime + 7 * Time.day

        childRefs = []
        childDicts = {}
        if isParent:
            for subjob in List.fromChar(job, " Status info for the Job :")[1:]:
                chRef = List.fromChar(subjob, "\n")[0].strip()
                childDict = self.__parseJobStatus(subjob, gridType)
                childRefs.append(chRef)
                childDicts[chRef] = childDict

        return {
            "Status": status,
            "DestinationSite": destination,
            "StatusDate": statusDate,
            "isChild": isChild,
            "isParent": isParent,
            "ParentRef": False,
            "FinalStatus": status in self.finalStateList,
            "ChildRefs": childRefs,
            "ChildDicts": childDicts,
        }

    def __addPilotsAccountingReport(self, pilotsData):
        """ fill accounting data
    """
        for pRef in pilotsData:
            pData = pilotsData[pRef]
            pA = PilotAccounting()
            pA.setEndTime(pData["LastUpdateTime"])
            pA.setStartTime(pData["SubmissionTime"])
            retVal = CS.getUsernameForDN(pData["OwnerDN"])
            if not retVal["OK"]:
                userName = "******"
                self.log.error("Can't determine username for dn:", pData["OwnerDN"])
            else:
                userName = retVal["Value"]
            pA.setValueByKey("User", userName)
            pA.setValueByKey("UserGroup", pData["OwnerGroup"])
            result = getSiteForCE(pData["DestinationSite"])
            if result["OK"] and result["Value"].strip():
                pA.setValueByKey("Site", result["Value"].strip())
            else:
                pA.setValueByKey("Site", "Unknown")
            pA.setValueByKey("GridCE", pData["DestinationSite"])
            pA.setValueByKey("GridMiddleware", pData["GridType"])
            pA.setValueByKey("GridResourceBroker", pData["Broker"])
            pA.setValueByKey("GridStatus", pData["Status"])
            if not "Jobs" in pData:
                pA.setValueByKey("Jobs", 0)
            else:
                pA.setValueByKey("Jobs", len(pData["Jobs"]))
            self.log.verbose("Added accounting record for pilot %s" % pData["PilotID"])
            retVal = gDataStoreClient.addRegister(pA)
            if not retVal["OK"]:
                return retVal
        return S_OK()
Ejemplo n.º 3
0
    def test_PilotsDB(self):

        wmsAdministrator = RPCClient('WorkloadManagement/WMSAdministrator')
        pilotAgentDB = PilotAgentsDB()

        res = wmsAdministrator.addPilotTQReference(['aPilot'], 1, '/a/ownerDN',
                                                   'a/owner/Group')
        self.assert_(res['OK'])
        res = wmsAdministrator.getCurrentPilotCounters({})
        self.assert_(res['OK'])
        self.assertEqual(res['Value'], {'Submitted': 1L})
        res = pilotAgentDB.deletePilot('aPilot')
        self.assert_(res['OK'])
        res = wmsAdministrator.getCurrentPilotCounters({})
        self.assert_(res['OK'])
        self.assertEqual(res['Value'], {})

        res = wmsAdministrator.addPilotTQReference(['anotherPilot'], 1,
                                                   '/a/ownerDN',
                                                   'a/owner/Group')
        self.assert_(res['OK'])
        res = wmsAdministrator.storePilotOutput('anotherPilot',
                                                'This is an output',
                                                'this is an error')
        self.assert_(res['OK'])
        res = wmsAdministrator.getPilotOutput('anotherPilot')
        self.assert_(res['OK'])
        self.assertEqual(
            res['Value'], {
                'OwnerDN': '/a/ownerDN',
                'OwnerGroup': 'a/owner/Group',
                'StdErr': 'this is an error',
                'FileList': [],
                'StdOut': 'This is an output'
            })
        # need a job for the following
        #     res = wmsAdministrator.getJobPilotOutput( 1 )
        #     self.assertEqual( res['Value'], {'OwnerDN': '/a/ownerDN', 'OwnerGroup': 'a/owner/Group',
        #                                      'StdErr': 'this is an error', 'FileList': [], 'StdOut': 'This is an output'} )
        #     self.assert_( res['OK'] )
        res = wmsAdministrator.getPilotInfo('anotherPilot')
        self.assert_(res['OK'])
        self.assertEqual(res['Value']['anotherPilot']['AccountingSent'],
                         'False')
        self.assertEqual(res['Value']['anotherPilot']['PilotJobReference'],
                         'anotherPilot')

        res = wmsAdministrator.selectPilots({})
        self.assert_(res['OK'])
        #     res = wmsAdministrator.getPilotLoggingInfo( 'anotherPilot' )
        #     self.assert_( res['OK'] )
        res = wmsAdministrator.getPilotSummary('', '')
        self.assert_(res['OK'])
        self.assertEqual(res['Value']['Total']['Submitted'], 1)
        res = wmsAdministrator.getPilotMonitorWeb({}, [], 0, 100)
        self.assert_(res['OK'])
        self.assertEqual(res['Value']['TotalRecords'], 1)
        res = wmsAdministrator.getPilotMonitorSelectors()
        self.assert_(res['OK'])
        self.assertEqual(
            res['Value'], {
                'GridType': ['DIRAC'],
                'OwnerGroup': ['a/owner/Group'],
                'DestinationSite': ['NotAssigned'],
                'Broker': ['Unknown'],
                'Status': ['Submitted'],
                'OwnerDN': ['/a/ownerDN'],
                'GridSite': ['Unknown'],
                'Owner': []
            })
        res = wmsAdministrator.getPilotSummaryWeb({}, [], 0, 100)
        self.assert_(res['OK'])
        self.assertEqual(res['Value']['TotalRecords'], 1)

        res = wmsAdministrator.setAccountingFlag('anotherPilot', 'True')
        self.assert_(res['OK'])
        res = wmsAdministrator.setPilotStatus('anotherPilot', 'Running')
        self.assert_(res['OK'])
        res = wmsAdministrator.getPilotInfo('anotherPilot')
        self.assert_(res['OK'])
        self.assertEqual(res['Value']['anotherPilot']['AccountingSent'],
                         'True')
        self.assertEqual(res['Value']['anotherPilot']['Status'], 'Running')

        res = wmsAdministrator.setJobForPilot(123, 'anotherPilot')
        self.assert_(res['OK'])
        res = wmsAdministrator.setPilotBenchmark('anotherPilot', 12.3)
        self.assert_(res['OK'])
        res = wmsAdministrator.countPilots({})
        self.assert_(res['OK'])
        #     res = wmsAdministrator.getCounters()
        #     # getPilotStatistics

        res = pilotAgentDB.deletePilot('anotherPilot')
        self.assert_(res['OK'])
        res = wmsAdministrator.getCurrentPilotCounters({})
        self.assert_(res['OK'])
        self.assertEqual(res['Value'], {})
Ejemplo n.º 4
0
class PilotStatusAgent(AgentModule):
    """
      The specific agents must provide the following methods:
        - initialize() for initial settings
        - beginExecution()
        - execute() - the main method called in the agent cycle
        - endExecution()
        - finalize() - the graceful exit of the method, this one is usually used
                   for the agent restart
  """

    queryStateList = ['Ready', 'Submitted', 'Running', 'Waiting', 'Scheduled']
    finalStateList = ['Done', 'Aborted', 'Cleared', 'Deleted', 'Failed']

    def __init__(self, *args, **kwargs):
        """ c'tor
    """
        AgentModule.__init__(self, *args, **kwargs)

        self.jobDB = None
        self.pilotDB = None
        self.diracadmin = None

    #############################################################################
    def initialize(self):
        """Sets defaults
    """

        self.am_setOption('PollingTime', 120)
        self.am_setOption('GridEnv', '')
        self.am_setOption('PilotStalledDays', 3)
        self.pilotDB = PilotAgentsDB()
        self.diracadmin = DiracAdmin()
        self.jobDB = JobDB()
        self.clearPilotsDelay = self.am_getOption('ClearPilotsDelay', 30)
        self.clearAbortedDelay = self.am_getOption('ClearAbortedPilotsDelay',
                                                   7)
        self.WMSAdministrator = RPCClient(
            'WorkloadManagement/WMSAdministrator')

        return S_OK()

    #############################################################################
    def execute(self):
        """The PilotAgent execution method.
    """

        self.pilotStalledDays = self.am_getOption('PilotStalledDays', 3)
        self.gridEnv = self.am_getOption('GridEnv')
        if not self.gridEnv:
            # No specific option found, try a general one
            setup = gConfig.getValue('/DIRAC/Setup', '')
            if setup:
                instance = gConfig.getValue(
                    '/DIRAC/Setups/%s/WorkloadManagement' % setup, '')
                if instance:
                    self.gridEnv = gConfig.getValue(
                        '/Systems/WorkloadManagement/%s/GridEnv' % instance,
                        '')
        result = self.pilotDB._getConnection()
        if result['OK']:
            connection = result['Value']
        else:
            return result

        # Now handle pilots not updated in the last N days (most likely the Broker is no
        # longer available) and declare them Deleted.
        result = self.handleOldPilots(connection)

        connection.close()

        result = self.WMSAdministrator.clearPilots(self.clearPilotsDelay,
                                                   self.clearAbortedDelay)
        if not result['OK']:
            self.log.warn('Failed to clear old pilots in the PilotAgentsDB')

        return S_OK()

    def clearWaitingPilots(self, condDict):
        """ Clear pilots in the faulty Waiting state
    """

        last_update = Time.dateTime() - MAX_WAITING_STATE_LENGTH * Time.hour
        clearDict = {
            'Status': 'Waiting',
            'OwnerDN': condDict['OwnerDN'],
            'OwnerGroup': condDict['OwnerGroup'],
            'GridType': condDict['GridType'],
            'Broker': condDict['Broker']
        }
        result = self.pilotDB.selectPilots(clearDict, older=last_update)
        if not result['OK']:
            self.log.warn('Failed to get the Pilot Agents for Waiting state')
            return result
        if not result['Value']:
            return S_OK()
        refList = result['Value']

        for pilotRef in refList:
            # FIXME: definitely, one of the 2 lines below is wrong...
            self.log.info('Setting Waiting pilot to Aborted: %s' % pilotRef)
            result = self.pilotDB.setPilotStatus(
                pilotRef, 'Stalled', statusReason='Exceeded max waiting time')

        return S_OK()

    def clearParentJob(self, pRef, pDict, connection):
        """ Clear the parameteric parent job from the PilotAgentsDB
    """

        childList = pDict['ChildRefs']

        # Check that at least one child is in the database
        children_ok = False
        for child in childList:
            result = self.pilotDB.getPilotInfo(child, conn=connection)
            if result['OK']:
                if result['Value']:
                    children_ok = True

        if children_ok:
            return self.pilotDB.deletePilot(pRef, conn=connection)
        else:
            self.log.verbose('Adding children for parent %s' % pRef)
            result = self.pilotDB.getPilotInfo(pRef)
            parentInfo = result['Value'][pRef]
            tqID = parentInfo['TaskQueueID']
            ownerDN = parentInfo['OwnerDN']
            ownerGroup = parentInfo['OwnerGroup']
            broker = parentInfo['Broker']
            gridType = parentInfo['GridType']
            result = self.pilotDB.addPilotTQReference(childList,
                                                      tqID,
                                                      ownerDN,
                                                      ownerGroup,
                                                      broker=broker,
                                                      gridType=gridType)
            if not result['OK']:
                return result
            children_added = True
            for chRef, chDict in pDict['ChildDicts'].items():
                result = self.pilotDB.setPilotStatus(
                    chRef,
                    chDict['Status'],
                    destination=chDict['DestinationSite'],
                    conn=connection)
                if not result['OK']:
                    children_added = False
            if children_added:
                result = self.pilotDB.deletePilot(pRef, conn=connection)
            else:
                return S_ERROR('Failed to add children')
        return S_OK()

    def handleOldPilots(self, connection):
        """
      select all pilots that have not been updated in the last N days and declared them
      Deleted, accounting for them.
    """
        pilotsToAccount = {}
        timeLimitToConsider = Time.toString(Time.dateTime() -
                                            Time.day * self.pilotStalledDays)
        result = self.pilotDB.selectPilots({'Status': self.queryStateList},
                                           older=timeLimitToConsider,
                                           timeStamp='LastUpdateTime')
        if not result['OK']:
            self.log.error('Failed to get the Pilot Agents')
            return result
        if not result['Value']:
            return S_OK()

        refList = result['Value']
        result = self.pilotDB.getPilotInfo(refList)
        if not result['OK']:
            self.log.error('Failed to get Info for Pilot Agents')
            return result

        pilotsDict = result['Value']

        for pRef in pilotsDict:
            if pilotsDict[pRef].get('Jobs') and self._checkJobLastUpdateTime(
                    pilotsDict[pRef]['Jobs'], self.pilotStalledDays):
                self.log.debug(
                    '%s should not be deleted since one job of %s is running.'
                    % (str(pRef), str(pilotsDict[pRef]['Jobs'])))
                continue
            deletedJobDict = pilotsDict[pRef]
            deletedJobDict['Status'] = 'Deleted'
            deletedJobDict['StatusDate'] = Time.dateTime()
            pilotsToAccount[pRef] = deletedJobDict
            if len(pilotsToAccount) > 100:
                self.accountPilots(pilotsToAccount, connection)
                self._killPilots(pilotsToAccount)
                pilotsToAccount = {}

        self.accountPilots(pilotsToAccount, connection)
        self._killPilots(pilotsToAccount)

        return S_OK()

    def accountPilots(self, pilotsToAccount, connection):
        """ account for pilots
    """
        accountingFlag = False
        pae = self.am_getOption('PilotAccountingEnabled', 'yes')
        if pae.lower() == "yes":
            accountingFlag = True

        if not pilotsToAccount:
            self.log.info('No pilots to Account')
            return S_OK()

        accountingSent = False
        if accountingFlag:
            retVal = self.pilotDB.getPilotInfo(pilotsToAccount.keys(),
                                               conn=connection)
            if not retVal['OK']:
                self.log.error('Fail to retrieve Info for pilots',
                               retVal['Message'])
                return retVal
            dbData = retVal['Value']
            for pref in dbData:
                if pref in pilotsToAccount:
                    if dbData[pref]['Status'] not in self.finalStateList:
                        dbData[pref]['Status'] = pilotsToAccount[pref][
                            'Status']
                        dbData[pref]['DestinationSite'] = pilotsToAccount[
                            pref]['DestinationSite']
                        dbData[pref]['LastUpdateTime'] = pilotsToAccount[pref][
                            'StatusDate']

            retVal = self.__addPilotsAccountingReport(dbData)
            if not retVal['OK']:
                self.log.error('Fail to retrieve Info for pilots',
                               retVal['Message'])
                return retVal

            self.log.info("Sending accounting records...")
            retVal = gDataStoreClient.commit()
            if not retVal['OK']:
                self.log.error("Can't send accounting reports",
                               retVal['Message'])
            else:
                self.log.info("Accounting sent for %s pilots" %
                              len(pilotsToAccount))
                accountingSent = True

        if not accountingFlag or accountingSent:
            for pRef in pilotsToAccount:
                pDict = pilotsToAccount[pRef]
                self.log.verbose('Setting Status for %s to %s' %
                                 (pRef, pDict['Status']))
                self.pilotDB.setPilotStatus(pRef,
                                            pDict['Status'],
                                            pDict['DestinationSite'],
                                            pDict['StatusDate'],
                                            conn=connection)

        return S_OK()

    def __addPilotsAccountingReport(self, pilotsData):
        """ fill accounting data
    """
        for pRef in pilotsData:
            pData = pilotsData[pRef]
            pA = PilotAccounting()
            pA.setEndTime(pData['LastUpdateTime'])
            pA.setStartTime(pData['SubmissionTime'])
            retVal = CS.getUsernameForDN(pData['OwnerDN'])
            if not retVal['OK']:
                userName = '******'
                self.log.error("Can't determine username for dn:",
                               pData['OwnerDN'])
            else:
                userName = retVal['Value']
            pA.setValueByKey('User', userName)
            pA.setValueByKey('UserGroup', pData['OwnerGroup'])
            result = getSiteForCE(pData['DestinationSite'])
            if result['OK'] and result['Value'].strip():
                pA.setValueByKey('Site', result['Value'].strip())
            else:
                pA.setValueByKey('Site', 'Unknown')
            pA.setValueByKey('GridCE', pData['DestinationSite'])
            pA.setValueByKey('GridMiddleware', pData['GridType'])
            pA.setValueByKey('GridResourceBroker', pData['Broker'])
            pA.setValueByKey('GridStatus', pData['Status'])
            if 'Jobs' not in pData:
                pA.setValueByKey('Jobs', 0)
            else:
                pA.setValueByKey('Jobs', len(pData['Jobs']))
            self.log.verbose("Added accounting record for pilot %s" %
                             pData['PilotID'])
            retVal = gDataStoreClient.addRegister(pA)
            if not retVal['OK']:
                return retVal
        return S_OK()

    def _killPilots(self, acc):
        for i in sorted(acc.keys()):
            result = self.diracadmin.getPilotInfo(i)
            if result['OK'] and i in result['Value'] and 'Status' in result[
                    'Value'][i]:
                ret = self.diracadmin.killPilot(str(i))
                if ret['OK']:
                    self.log.info("Successfully deleted: %s (Status : %s)" %
                                  (i, result['Value'][i]['Status']))
                else:
                    self.log.error("Failed to delete pilot: ",
                                   "%s : %s" % (i, ret['Message']))
            else:
                self.log.error("Failed to get pilot info",
                               "%s : %s" % (i, str(result)))

    def _checkJobLastUpdateTime(self, joblist, StalledDays):
        timeLimitToConsider = Time.dateTime() - Time.day * StalledDays
        ret = False
        for jobID in joblist:
            result = self.jobDB.getJobAttributes(int(jobID))
            if result['OK']:
                if 'LastUpdateTime' in result['Value']:
                    lastUpdateTime = result['Value']['LastUpdateTime']
                    if Time.fromString(lastUpdateTime) > timeLimitToConsider:
                        ret = True
                        self.log.debug(
                            'Since %s updates LastUpdateTime on %s this does not to need to be deleted.'
                            % (str(jobID), str(lastUpdateTime)))
                        break
            else:
                self.log.error("Error taking job info from DB",
                               result['Message'])
        return ret
Ejemplo n.º 5
0
  def test_PilotsDB( self ):

    wmsAdministrator = RPCClient( 'WorkloadManagement/WMSAdministrator' )
    pilotAgentDB = PilotAgentsDB()


    res = wmsAdministrator.addPilotTQReference( ['aPilot'], 1, '/a/ownerDN', 'a/owner/Group' )
    self.assert_( res['OK'] )
    res = wmsAdministrator.getCurrentPilotCounters( {} )
    self.assert_( res['OK'] )
    self.assertEqual( res['Value'], {'Submitted': 1L} )
    res = pilotAgentDB.deletePilot( 'aPilot' )
    self.assert_( res['OK'] )
    res = wmsAdministrator.getCurrentPilotCounters( {} )
    self.assert_( res['OK'] )
    self.assertEqual( res['Value'], {} )

    res = wmsAdministrator.addPilotTQReference( ['anotherPilot'], 1, '/a/ownerDN', 'a/owner/Group' )
    self.assert_( res['OK'] )
    res = wmsAdministrator.storePilotOutput( 'anotherPilot', 'This is an output', 'this is an error' )
    self.assert_( res['OK'] )
    res = wmsAdministrator.getPilotOutput( 'anotherPilot' )
    self.assert_( res['OK'] )
    self.assertEqual( res['Value'], {'OwnerDN': '/a/ownerDN',
                                     'OwnerGroup': 'a/owner/Group',
                                     'StdErr': 'this is an error',
                                     'FileList': [],
                                     'StdOut': 'This is an output'} )
    # need a job for the following
#     res = wmsAdministrator.getJobPilotOutput( 1 )
#     self.assertEqual( res['Value'], {'OwnerDN': '/a/ownerDN', 'OwnerGroup': 'a/owner/Group',
#                                      'StdErr': 'this is an error', 'FileList': [], 'StdOut': 'This is an output'} )
#     self.assert_( res['OK'] )
    res = wmsAdministrator.getPilotInfo( 'anotherPilot' )
    self.assert_( res['OK'] )
    self.assertEqual( res['Value']['anotherPilot']['AccountingSent'], 'False' )
    self.assertEqual( res['Value']['anotherPilot']['PilotJobReference'], 'anotherPilot' )

    res = wmsAdministrator.selectPilots( {} )
    self.assert_( res['OK'] )
#     res = wmsAdministrator.getPilotLoggingInfo( 'anotherPilot' )
#     self.assert_( res['OK'] )
    res = wmsAdministrator.getPilotSummary( '', '' )
    self.assert_( res['OK'] )
    self.assertEqual( res['Value']['Total']['Submitted'], 1 )
    res = wmsAdministrator.getPilotMonitorWeb( {}, [], 0, 100 )
    self.assert_( res['OK'] )
    self.assertEqual( res['Value']['TotalRecords'], 1 )
    res = wmsAdministrator.getPilotMonitorSelectors()
    self.assert_( res['OK'] )
    self.assertEqual( res['Value'], {'GridType': ['DIRAC'], 
                                     'OwnerGroup': ['a/owner/Group'], 
                                     'DestinationSite': ['NotAssigned'], 
                                     'Broker': ['Unknown'], 'Status': ['Submitted'], 
                                     'OwnerDN': ['/a/ownerDN'], 
                                     'GridSite': ['Unknown'], 
                                     'Owner': []} )
    res = wmsAdministrator.getPilotSummaryWeb( {}, [], 0, 100 )
    self.assert_( res['OK'] )
    self.assertEqual( res['Value']['TotalRecords'], 1 )

    res = wmsAdministrator.setAccountingFlag( 'anotherPilot', 'True' )
    self.assert_( res['OK'] )
    res = wmsAdministrator.setPilotStatus( 'anotherPilot', 'Running' )
    self.assert_( res['OK'] )
    res = wmsAdministrator.getPilotInfo( 'anotherPilot' )
    self.assert_( res['OK'] )
    self.assertEqual( res['Value']['anotherPilot']['AccountingSent'], 'True' )
    self.assertEqual( res['Value']['anotherPilot']['Status'], 'Running' )

    res = wmsAdministrator.setJobForPilot( 123, 'anotherPilot' )
    self.assert_( res['OK'] )
    res = wmsAdministrator.setPilotBenchmark( 'anotherPilot', 12.3 )
    self.assert_( res['OK'] )
    res = wmsAdministrator.countPilots( {} )
    self.assert_( res['OK'] )
#     res = wmsAdministrator.getCounters()
#     # getPilotStatistics

    res = pilotAgentDB.deletePilot( 'anotherPilot' )
    self.assert_( res['OK'] )
    res = wmsAdministrator.getCurrentPilotCounters( {} )
    self.assert_( res['OK'] )
    self.assertEqual( res['Value'], {} )
Ejemplo n.º 6
0
class PilotStatusAgent(AgentModule):
    """
      The specific agents must provide the following methods:
      - initialize() for initial settings
      - beginExecution()
      - execute() - the main method called in the agent cycle
      - endExecution()
      - finalize() - the graceful exit of the method, this one is usually used
                 for the agent restart
  """

    queryStateList = ['Ready', 'Submitted', 'Running', 'Waiting', 'Scheduled']
    finalStateList = ['Done', 'Aborted', 'Cleared', 'Deleted', 'Failed']
    identityFieldsList = ['OwnerDN', 'OwnerGroup', 'GridType', 'Broker']
    eligibleGridTypes = ['gLite']

    #############################################################################
    def initialize(self):
        """Sets defaults
    """

        self.am_setOption('PollingTime', 120)
        self.am_setOption('GridEnv', '')
        self.am_setOption('PilotStalledDays', 3)
        self.pilotDB = PilotAgentsDB()
        return S_OK()

    #############################################################################
    def execute(self):
        """The PilotAgent execution method.
    """

        self.pilotStalledDays = self.am_getOption('PilotStalledDays', 3)
        self.gridEnv = self.am_getOption('GridEnv')
        if not self.gridEnv:
            # No specific option found, try a general one
            setup = gConfig.getValue('/DIRAC/Setup', '')
            if setup:
                instance = gConfig.getValue(
                    '/DIRAC/Setups/%s/WorkloadManagement' % setup, '')
                if instance:
                    self.gridEnv = gConfig.getValue(
                        '/Systems/WorkloadManagement/%s/GridEnv' % instance,
                        '')
        result = self.pilotDB._getConnection()
        if result['OK']:
            connection = result['Value']
        else:
            return result

        result = self.pilotDB.getPilotGroups(self.identityFieldsList,
                                             {'Status': self.queryStateList})
        if not result['OK']:
            self.log.error('Fail to get identities Groups', result['Message'])
            return result
        if not result['Value']:
            return S_OK()

        pilotsToAccount = {}

        for ownerDN, ownerGroup, gridType, broker in result['Value']:

            if not gridType in self.eligibleGridTypes:
                continue

            self.log.verbose('Getting pilots for %s:%s @ %s %s' %
                             (ownerDN, ownerGroup, gridType, broker))

            condDict1 = {
                'Status': 'Done',
                'StatusReason': 'Report from JobAgent',
                'OwnerDN': ownerDN,
                'OwnerGroup': ownerGroup,
                'GridType': gridType,
                'Broker': broker
            }

            condDict2 = {
                'Status': self.queryStateList,
                'OwnerDN': ownerDN,
                'OwnerGroup': ownerGroup,
                'GridType': gridType,
                'Broker': broker
            }

            for condDict in [condDict1, condDict2]:
                result = self.clearWaitingPilots(condDict)
                if not result['OK']:
                    self.log.warn('Failed to clear Waiting Pilot Jobs')

                result = self.pilotDB.selectPilots(condDict)
                if not result['OK']:
                    self.log.warn('Failed to get the Pilot Agents')
                    return result
                if not result['Value']:
                    continue
                refList = result['Value']

                ret = gProxyManager.getPilotProxyFromDIRACGroup(
                    ownerDN, ownerGroup)
                if not ret['OK']:
                    self.log.error(ret['Message'])
                    self.log.error(
                        'Could not get proxy:',
                        'User "%s", Group "%s"' % (ownerDN, ownerGroup))
                    continue
                proxy = ret['Value']

                self.log.verbose(
                    "Getting status for %s pilots for owner %s and group %s" %
                    (len(refList), ownerDN, ownerGroup))

                for start_index in range(0, len(refList), MAX_JOBS_QUERY):
                    refsToQuery = refList[start_index:start_index +
                                          MAX_JOBS_QUERY]
                    self.log.verbose(
                        'Querying %d pilots of %s starting at %d' %
                        (len(refsToQuery), len(refList), start_index))
                    result = self.getPilotStatus(proxy, gridType, refsToQuery)
                    if not result['OK']:
                        if result['Message'] == 'Broker not Available':
                            self.log.error('Broker %s not Available' % broker)
                            break
                        self.log.warn('Failed to get pilot status:')
                        self.log.warn('%s:%s @ %s' %
                                      (ownerDN, ownerGroup, gridType))
                        continue

                    statusDict = result['Value']
                    for pRef in statusDict:
                        pDict = statusDict[pRef]
                        if pDict:
                            if pDict['isParent']:
                                self.log.verbose('Clear parametric parent %s' %
                                                 pRef)
                                result = self.clearParentJob(
                                    pRef, pDict, connection)
                                if not result['OK']:
                                    self.log.warn(result['Message'])
                                else:
                                    self.log.info(
                                        'Parametric parent removed: %s' % pRef)
                            if pDict['FinalStatus']:
                                self.log.verbose(
                                    'Marking Status for %s to %s' %
                                    (pRef, pDict['Status']))
                                pilotsToAccount[pRef] = pDict
                            else:
                                self.log.verbose(
                                    'Setting Status for %s to %s' %
                                    (pRef, pDict['Status']))
                                result = self.pilotDB.setPilotStatus(
                                    pRef,
                                    pDict['Status'],
                                    pDict['DestinationSite'],
                                    updateTime=pDict['StatusDate'],
                                    conn=connection)

                    if len(pilotsToAccount) > 100:
                        self.accountPilots(pilotsToAccount, connection)
                        pilotsToAccount = {}

        self.accountPilots(pilotsToAccount, connection)
        # Now handle pilots not updated in the last N days (most likely the Broker is no
        # longer available) and declare them Deleted.
        result = self.handleOldPilots(connection)

        connection.close()

        return S_OK()

    def clearWaitingPilots(self, condDict):
        """ Clear pilots in the faulty Waiting state
    """

        last_update = Time.dateTime() - MAX_WAITING_STATE_LENGTH * Time.hour
        clearDict = {
            'Status': 'Waiting',
            'OwnerDN': condDict['OwnerDN'],
            'OwnerGroup': condDict['OwnerGroup'],
            'GridType': condDict['GridType'],
            'Broker': condDict['Broker']
        }
        result = self.pilotDB.selectPilots(clearDict, older=last_update)
        if not result['OK']:
            self.log.warn('Failed to get the Pilot Agents fpr Waiting state')
            return result
        if not result['Value']:
            return S_OK()
        refList = result['Value']

        for pilotRef in refList:
            self.log.info('Setting Waiting pilot to Aborted: %s' % pilotRef)
            result = self.pilotDB.setPilotStatus(
                pilotRef, 'Stalled', statusReason='Exceeded max waiting time')

        return S_OK()

    def clearParentJob(self, pRef, pDict, connection):
        """ Clear the parameteric parent job from the PilotAgentsDB
    """

        childList = pDict['ChildRefs']

        # Check that at least one child is in the database
        children_ok = False
        for child in childList:
            result = self.pilotDB.getPilotInfo(child, conn=connection)
            if result['OK']:
                if result['Value']:
                    children_ok = True

        if children_ok:
            return self.pilotDB.deletePilot(pRef, conn=connection)
        else:
            self.log.verbose('Adding children for parent %s' % pRef)
            result = self.pilotDB.getPilotInfo(pRef)
            parentInfo = result['Value'][pRef]
            tqID = parentInfo['TaskQueueID']
            ownerDN = parentInfo['OwnerDN']
            ownerGroup = parentInfo['OwnerGroup']
            broker = parentInfo['Broker']
            gridType = parentInfo['GridType']
            result = self.pilotDB.addPilotTQReference(childList,
                                                      tqID,
                                                      ownerDN,
                                                      ownerGroup,
                                                      broker=broker,
                                                      gridType=gridType)
            if not result['OK']:
                return result
            children_added = True
            for chRef, chDict in pDict['ChildDicts'].items():
                result = self.pilotDB.setPilotStatus(
                    chRef,
                    chDict['Status'],
                    destination=chDict['DestinationSite'],
                    conn=connection)
                if not result['OK']:
                    children_added = False
            if children_added:
                result = self.pilotDB.deletePilot(pRef, conn=connection)
            else:
                return S_ERROR('Failed to add children')
        return S_OK()

    def handleOldPilots(self, connection):
        """
      select all pilots that have not been updated in the last N days and declared them 
      Deleted, accounting for them.
    """
        pilotsToAccount = {}
        timeLimitToConsider = Time.toString(Time.dateTime() -
                                            Time.day * self.pilotStalledDays)
        # A.T. Below looks to be a bug
        #result = self.pilotDB.selectPilots( {'Status':self.queryStateList} , older=None, timeStamp='LastUpdateTime' )
        result = self.pilotDB.selectPilots({'Status': self.queryStateList},
                                           older=timeLimitToConsider,
                                           timeStamp='LastUpdateTime')
        if not result['OK']:
            self.log.error('Failed to get the Pilot Agents')
            return result
        if not result['Value']:
            return S_OK()

        refList = result['Value']
        result = self.pilotDB.getPilotInfo(refList)
        if not result['OK']:
            self.log.error('Failed to get Info for Pilot Agents')
            return result

        pilotsDict = result['Value']

        for pRef in pilotsDict:
            deletedJobDict = pilotsDict[pRef]
            deletedJobDict['Status'] = 'Deleted'
            deletedJobDict['StatusDate'] = Time.dateTime()
            pilotsToAccount[pRef] = deletedJobDict
            if len(pilotsToAccount) > 100:
                self.accountPilots(pilotsToAccount, connection)
                pilotsToAccount = {}

        self.accountPilots(pilotsToAccount, connection)

        return S_OK()

    def accountPilots(self, pilotsToAccount, connection):
        """ account for pilots
    """
        accountingFlag = False
        pae = self.am_getOption('PilotAccountingEnabled', 'yes')
        if pae.lower() == "yes":
            accountingFlag = True

        if not pilotsToAccount:
            self.log.info('No pilots to Account')
            return S_OK()

        accountingSent = False
        if accountingFlag:
            retVal = self.pilotDB.getPilotInfo(pilotsToAccount.keys(),
                                               conn=connection)
            if not retVal['OK']:
                self.log.error('Fail to retrieve Info for pilots',
                               retVal['Message'])
                return retVal
            dbData = retVal['Value']
            for pref in dbData:
                if pref in pilotsToAccount:
                    if dbData[pref]['Status'] not in self.finalStateList:
                        dbData[pref]['Status'] = pilotsToAccount[pref][
                            'Status']
                        dbData[pref]['DestinationSite'] = pilotsToAccount[
                            pref]['DestinationSite']
                        dbData[pref]['LastUpdateTime'] = pilotsToAccount[pref][
                            'StatusDate']

            retVal = self.__addPilotsAccountingReport(dbData)
            if not retVal['OK']:
                self.log.error('Fail to retrieve Info for pilots',
                               retVal['Message'])
                return retVal

            self.log.info("Sending accounting records...")
            retVal = gDataStoreClient.commit()
            if not retVal['OK']:
                self.log.error("Can't send accounting reports",
                               retVal['Message'])
            else:
                self.log.info("Accounting sent for %s pilots" %
                              len(pilotsToAccount))
                accountingSent = True

        if not accountingFlag or accountingSent:
            for pRef in pilotsToAccount:
                pDict = pilotsToAccount[pRef]
                self.log.verbose('Setting Status for %s to %s' %
                                 (pRef, pDict['Status']))
                self.pilotDB.setPilotStatus(pRef,
                                            pDict['Status'],
                                            pDict['DestinationSite'],
                                            pDict['StatusDate'],
                                            conn=connection)

        return S_OK()

    #############################################################################
    def getPilotStatus(self, proxy, gridType, pilotRefList):
        """ Get GRID job status information using the job's owner proxy and
        GRID job IDs. Returns for each JobID its status in the GRID WMS and
        its destination CE as a tuple of 2 elements
    """

        if gridType == 'LCG':
            cmd = ['edg-job-status']
        elif gridType == 'gLite':
            cmd = ['glite-wms-job-status']
        else:
            return S_ERROR()
        cmd.extend(pilotRefList)

        start = time.time()
        ret = executeGridCommand(proxy, cmd, self.gridEnv)
        self.log.info(
            '%s Job Status Execution Time for %d jobs:' %
            (gridType, len(pilotRefList)),
            time.time() - start)

        if not ret['OK']:
            self.log.error('Failed to execute %s Job Status' % gridType,
                           ret['Message'])
            return S_ERROR()
        if ret['Value'][0] != 0:
            stderr = ret['Value'][2]
            stdout = ret['Value'][1]
            deleted = 0
            resultDict = {}
            status = 'Deleted'
            destination = 'Unknown'
            deletedJobDict = {
                'Status': status,
                'DestinationSite': destination,
                'StatusDate': Time.dateTime(),
                'isChild': False,
                'isParent': False,
                'ParentRef': False,
                'FinalStatus': status in self.finalStateList,
                'ChildRefs': []
            }
            # Glite returns this error for Deleted jobs to std.err
            for job in List.fromChar(
                    stderr, '\nUnable to retrieve the status for:')[1:]:
                pRef = List.fromChar(job, '\n')[0].strip()
                resultDict[pRef] = deletedJobDict
                self.pilotDB.setPilotStatus(pRef, "Deleted")
                deleted += 1
            # EDG returns a similar error for Deleted jobs to std.out
            for job in List.fromChar(
                    stdout, '\nUnable to retrieve the status for:')[1:]:
                pRef = List.fromChar(job, '\n')[0].strip()
                if re.search(
                        "No such file or directory: no matching jobs found",
                        job):
                    resultDict[pRef] = deletedJobDict
                    self.pilotDB.setPilotStatus(pRef, "Deleted")
                    deleted += 1
                if re.search(
                        "edg_wll_JobStatus: Connection refused: edg_wll_ssl_connect()",
                        job):
                    # the Broker is not accesible
                    return S_ERROR('Broker not Available')
            if not deleted:
                self.log.error(
                    'Error executing %s Job Status:' % gridType,
                    str(ret['Value'][0]) + '\n'.join(ret['Value'][1:3]))
                return S_ERROR()
            return S_OK(resultDict)

        stdout = ret['Value'][1]
        stderr = ret['Value'][2]
        resultDict = {}
        for job in List.fromChar(stdout, '\nStatus info for the Job :')[1:]:
            pRef = List.fromChar(job, '\n')[0].strip()
            resultDict[pRef] = self.__parseJobStatus(job, gridType)

        return S_OK(resultDict)

    def __parseJobStatus(self, job, gridType):
        """ Parse output of grid pilot status command
    """

        statusRE = 'Current Status:\s*(\w*)'
        destinationRE = 'Destination:\s*([\w\.-]*)'
        statusDateLCGRE = 'reached on:\s*....(.*)'
        submittedDateRE = 'Submitted:\s*....(.*)'
        statusFailedRE = 'Current Status:.*\(Failed\)'

        status = None
        destination = 'Unknown'
        statusDate = None
        submittedDate = None

        try:
            status = re.search(statusRE, job).group(1)
            if status == 'Done' and re.search(statusFailedRE, job):
                status = 'Failed'
            if re.search(destinationRE, job):
                destination = re.search(destinationRE, job).group(1)
            if gridType == 'LCG' and re.search(statusDateLCGRE, job):
                statusDate = re.search(statusDateLCGRE, job).group(1)
                statusDate = time.strftime(
                    '%Y-%m-%d %H:%M:%S',
                    time.strptime(statusDate, '%b %d %H:%M:%S %Y'))
            if gridType == 'gLite' and re.search(submittedDateRE, job):
                submittedDate = re.search(submittedDateRE, job).group(1)
                submittedDate = time.strftime(
                    '%Y-%m-%d %H:%M:%S',
                    time.strptime(submittedDate, '%b %d %H:%M:%S %Y %Z'))
        except:
            self.log.exception(
                'Error parsing %s Job Status output:\n' % gridType, job)

        isParent = False
        if re.search('Nodes information', job):
            isParent = True
        isChild = False
        if re.search('Parent Job', job):
            isChild = True

        if status == "Running":
            # Pilots can be in Running state for too long, due to bugs in the WMS
            if statusDate:
                statusTime = Time.fromString(statusDate)
                delta = Time.dateTime() - statusTime
                if delta > 4 * Time.day:
                    self.log.info(
                        'Setting pilot status to Deleted after 4 days in Running'
                    )
                    status = "Deleted"
                    statusDate = statusTime + 4 * Time.day
            elif submittedDate:
                statusTime = Time.fromString(submittedDate)
                delta = Time.dateTime() - statusTime
                if delta > 7 * Time.day:
                    self.log.info(
                        'Setting pilot status to Deleted more than 7 days after submission still in Running'
                    )
                    status = "Deleted"
                    statusDate = statusTime + 7 * Time.day

        childRefs = []
        childDicts = {}
        if isParent:
            for subjob in List.fromChar(job, ' Status info for the Job :')[1:]:
                chRef = List.fromChar(subjob, '\n')[0].strip()
                childDict = self.__parseJobStatus(subjob, gridType)
                childRefs.append(chRef)
                childDicts[chRef] = childDict

        return {
            'Status': status,
            'DestinationSite': destination,
            'StatusDate': statusDate,
            'isChild': isChild,
            'isParent': isParent,
            'ParentRef': False,
            'FinalStatus': status in self.finalStateList,
            'ChildRefs': childRefs,
            'ChildDicts': childDicts
        }

    def __addPilotsAccountingReport(self, pilotsData):
        """ fill accounting data
    """
        for pRef in pilotsData:
            pData = pilotsData[pRef]
            pA = PilotAccounting()
            pA.setEndTime(pData['LastUpdateTime'])
            pA.setStartTime(pData['SubmissionTime'])
            retVal = CS.getUsernameForDN(pData['OwnerDN'])
            if not retVal['OK']:
                userName = '******'
                self.log.error("Can't determine username for dn:",
                               pData['OwnerDN'])
            else:
                userName = retVal['Value']
            pA.setValueByKey('User', userName)
            pA.setValueByKey('UserGroup', pData['OwnerGroup'])
            result = getSiteForCE(pData['DestinationSite'])
            if result['OK'] and result['Value'].strip():
                pA.setValueByKey('Site', result['Value'].strip())
            else:
                pA.setValueByKey('Site', 'Unknown')
            pA.setValueByKey('GridCE', pData['DestinationSite'])
            pA.setValueByKey('GridMiddleware', pData['GridType'])
            pA.setValueByKey('GridResourceBroker', pData['Broker'])
            pA.setValueByKey('GridStatus', pData['Status'])
            if not 'Jobs' in pData:
                pA.setValueByKey('Jobs', 0)
            else:
                pA.setValueByKey('Jobs', len(pData['Jobs']))
            self.log.verbose("Added accounting record for pilot %s" %
                             pData['PilotID'])
            retVal = gDataStoreClient.addRegister(pA)
            if not retVal['OK']:
                return retVal
        return S_OK()
Ejemplo n.º 7
0
class PilotStatusAgent( AgentModule ):
  """
      The specific agents must provide the following methods:
      - initialize() for initial settings
      - beginExecution()
      - execute() - the main method called in the agent cycle
      - endExecution()
      - finalize() - the graceful exit of the method, this one is usually used
                 for the agent restart
  """

  queryStateList = ['Ready', 'Submitted', 'Running', 'Waiting', 'Scheduled']
  finalStateList = [ 'Done', 'Aborted', 'Cleared', 'Deleted', 'Failed' ]
  identityFieldsList = [ 'OwnerDN', 'OwnerGroup', 'GridType', 'Broker' ]
  eligibleGridTypes = [ 'gLite' ]

  #############################################################################
  def initialize( self ):
    """Sets defaults
    """

    self.am_setOption( 'PollingTime', 120 )
    self.am_setOption( 'GridEnv', '' )
    self.am_setOption( 'PilotStalledDays', 3 )
    self.pilotDB = PilotAgentsDB()
    self.diracadmin = DiracAdmin()
    self.jobDB = JobDB()
    return S_OK()

  #############################################################################
  def execute( self ):
    """The PilotAgent execution method.
    """

    self.pilotStalledDays = self.am_getOption( 'PilotStalledDays', 3 )
    self.gridEnv = self.am_getOption( 'GridEnv' )
    if not self.gridEnv:
      # No specific option found, try a general one
      setup = gConfig.getValue( '/DIRAC/Setup', '' )
      if setup:
        instance = gConfig.getValue( '/DIRAC/Setups/%s/WorkloadManagement' % setup, '' )
        if instance:
          self.gridEnv = gConfig.getValue( '/Systems/WorkloadManagement/%s/GridEnv' % instance, '' )
    result = self.pilotDB._getConnection()
    if result['OK']:
      connection = result['Value']
    else:
      return result

    result = self.pilotDB.getPilotGroups( self.identityFieldsList,
                                         {'Status': self.queryStateList } )
    if not result['OK']:
      self.log.error( 'Fail to get identities Groups', result['Message'] )
      return result
    if not result['Value']:
      return S_OK()

    pilotsToAccount = {}

    for ownerDN, ownerGroup, gridType, broker in result['Value']:

      if not gridType in self.eligibleGridTypes:
        continue

      self.log.verbose( 'Getting pilots for %s:%s @ %s %s' % ( ownerDN, ownerGroup, gridType, broker ) )

      condDict1 = {'Status':'Done',
                   'StatusReason':'Report from JobAgent',
                   'OwnerDN':ownerDN,
                   'OwnerGroup':ownerGroup,
                   'GridType':gridType,
                   'Broker':broker}

      condDict2 = {'Status':self.queryStateList,
                   'OwnerDN':ownerDN,
                   'OwnerGroup':ownerGroup,
                   'GridType':gridType,
                   'Broker':broker}

      for condDict in [ condDict1, condDict2]:
        result = self.clearWaitingPilots( condDict )
        if not result['OK']:
          self.log.warn( 'Failed to clear Waiting Pilot Jobs' )

        result = self.pilotDB.selectPilots( condDict )
        if not result['OK']:
          self.log.warn( 'Failed to get the Pilot Agents' )
          return result
        if not result['Value']:
          continue
        refList = result['Value']

        ret = gProxyManager.getPilotProxyFromDIRACGroup( ownerDN, ownerGroup )
        if not ret['OK']:
          self.log.error( ret['Message'] )
          self.log.error( 'Could not get proxy:', 'User "%s", Group "%s"' % ( ownerDN, ownerGroup ) )
          continue
        proxy = ret['Value']

        self.log.verbose( "Getting status for %s pilots for owner %s and group %s" % ( len( refList ),
                                                                                      ownerDN, ownerGroup ) )

        for start_index in range( 0, len( refList ), MAX_JOBS_QUERY ):
          refsToQuery = refList[ start_index : start_index + MAX_JOBS_QUERY ]
          self.log.verbose( 'Querying %d pilots of %s starting at %d' %
                            ( len( refsToQuery ), len( refList ), start_index ) )
          result = self.getPilotStatus( proxy, gridType, refsToQuery )
          if not result['OK']:
            if result['Message'] == 'Broker not Available':
              self.log.error( 'Broker %s not Available' % broker )
              break
            self.log.warn( 'Failed to get pilot status:' )
            self.log.warn( '%s:%s @ %s' % ( ownerDN, ownerGroup, gridType ) )
            continue

          statusDict = result[ 'Value' ]
          for pRef in statusDict:
            pDict = statusDict[ pRef ]
            if pDict:
              if pDict['isParent']:
                self.log.verbose( 'Clear parametric parent %s' % pRef )
                result = self.clearParentJob( pRef, pDict, connection )
                if not result['OK']:
                  self.log.warn( result['Message'] )
                else:
                  self.log.info( 'Parametric parent removed: %s' % pRef )
              if pDict[ 'FinalStatus' ]:
                self.log.verbose( 'Marking Status for %s to %s' % ( pRef, pDict['Status'] ) )
                pilotsToAccount[ pRef ] = pDict
              else:
                self.log.verbose( 'Setting Status for %s to %s' % ( pRef, pDict['Status'] ) )
                result = self.pilotDB.setPilotStatus( pRef,
                                                      pDict['Status'],
                                                      pDict['DestinationSite'],
                                                      updateTime = pDict['StatusDate'],
                                                      conn = connection )

          if len( pilotsToAccount ) > 100:
            self.accountPilots( pilotsToAccount, connection )
            pilotsToAccount = {}

    self.accountPilots( pilotsToAccount, connection )
    # Now handle pilots not updated in the last N days (most likely the Broker is no 
    # longer available) and declare them Deleted.
    result = self.handleOldPilots( connection )

    connection.close()

    return S_OK()

  def clearWaitingPilots( self, condDict ):
    """ Clear pilots in the faulty Waiting state
    """

    last_update = Time.dateTime() - MAX_WAITING_STATE_LENGTH * Time.hour
    clearDict = {'Status':'Waiting',
                 'OwnerDN':condDict['OwnerDN'],
                 'OwnerGroup':condDict['OwnerGroup'],
                 'GridType':condDict['GridType'],
                 'Broker':condDict['Broker']}
    result = self.pilotDB.selectPilots( clearDict, older = last_update )
    if not result['OK']:
      self.log.warn( 'Failed to get the Pilot Agents for Waiting state' )
      return result
    if not result['Value']:
      return S_OK()
    refList = result['Value']

    for pilotRef in refList:
      self.log.info( 'Setting Waiting pilot to Aborted: %s' % pilotRef )
      result = self.pilotDB.setPilotStatus( pilotRef, 'Stalled', statusReason = 'Exceeded max waiting time' )

    return S_OK()

  def clearParentJob( self, pRef, pDict, connection ):
    """ Clear the parameteric parent job from the PilotAgentsDB
    """

    childList = pDict['ChildRefs']

    # Check that at least one child is in the database
    children_ok = False
    for child in childList:
      result = self.pilotDB.getPilotInfo( child, conn = connection )
      if result['OK']:
        if result['Value']:
          children_ok = True

    if children_ok:
      return self.pilotDB.deletePilot( pRef, conn = connection )
    else:
      self.log.verbose( 'Adding children for parent %s' % pRef )
      result = self.pilotDB.getPilotInfo( pRef )
      parentInfo = result['Value'][pRef]
      tqID = parentInfo['TaskQueueID']
      ownerDN = parentInfo['OwnerDN']
      ownerGroup = parentInfo['OwnerGroup']
      broker = parentInfo['Broker']
      gridType = parentInfo['GridType']
      result = self.pilotDB.addPilotTQReference( childList, tqID, ownerDN, ownerGroup,
                                                broker = broker, gridType = gridType )
      if not result['OK']:
        return result
      children_added = True
      for chRef, chDict in pDict['ChildDicts'].items():
        result = self.pilotDB.setPilotStatus( chRef, chDict['Status'],
                                             destination = chDict['DestinationSite'],
                                             conn = connection )
        if not result['OK']:
          children_added = False
      if children_added :
        result = self.pilotDB.deletePilot( pRef, conn = connection )
      else:
        return S_ERROR( 'Failed to add children' )
    return S_OK()

  def handleOldPilots( self, connection ):
    """
      select all pilots that have not been updated in the last N days and declared them 
      Deleted, accounting for them.
    """
    pilotsToAccount = {}
    timeLimitToConsider = Time.toString( Time.dateTime() - Time.day * self.pilotStalledDays )
    # A.T. Below looks to be a bug 
    #result = self.pilotDB.selectPilots( {'Status':self.queryStateList} , older=None, timeStamp='LastUpdateTime' )
    result = self.pilotDB.selectPilots( { 'Status':self.queryStateList} ,
                                        older = timeLimitToConsider,
                                        timeStamp = 'LastUpdateTime' )
    if not result['OK']:
      self.log.error( 'Failed to get the Pilot Agents' )
      return result
    if not result['Value']:
      return S_OK()

    refList = result['Value']
    result = self.pilotDB.getPilotInfo( refList )
    if not result['OK']:
      self.log.error( 'Failed to get Info for Pilot Agents' )
      return result

    pilotsDict = result['Value']

    for pRef in pilotsDict:
      if pilotsDict[pRef].has_key('Jobs') and len(pilotsDict[pRef]['Jobs']) > 0 and self._checkJobLastUpdateTime(pilotsDict[pRef]['Jobs'],self.pilotStalledDays):
        self.log.debug('%s should not be deleted since one job of %s is running.' % ( str(pRef) , str(pilotsDict[pRef]['Jobs']) ) )
        continue
      deletedJobDict = pilotsDict[pRef]
      deletedJobDict['Status'] = 'Deleted'
      deletedJobDict['StatusDate'] = Time.dateTime()
      pilotsToAccount[ pRef ] = deletedJobDict
      if len( pilotsToAccount ) > 100:
        self.accountPilots( pilotsToAccount, connection )
        self._killPilots( pilotsToAccount )
        pilotsToAccount = {}

    self.accountPilots( pilotsToAccount, connection )
    self._killPilots( pilotsToAccount )


    return S_OK()

  def accountPilots( self, pilotsToAccount, connection ):
    """ account for pilots
    """
    accountingFlag = False
    pae = self.am_getOption( 'PilotAccountingEnabled', 'yes' )
    if pae.lower() == "yes":
      accountingFlag = True

    if not pilotsToAccount:
      self.log.info( 'No pilots to Account' )
      return S_OK()

    accountingSent = False
    if accountingFlag:
      retVal = self.pilotDB.getPilotInfo( pilotsToAccount.keys(), conn = connection )
      if not retVal['OK']:
        self.log.error( 'Fail to retrieve Info for pilots', retVal['Message'] )
        return retVal
      dbData = retVal[ 'Value' ]
      for pref in dbData:
        if pref in pilotsToAccount:
          if dbData[pref][ 'Status' ] not in self.finalStateList:
            dbData[pref][ 'Status' ] = pilotsToAccount[pref][ 'Status' ]
            dbData[pref][ 'DestinationSite' ] = pilotsToAccount[pref][ 'DestinationSite' ]
            dbData[pref][ 'LastUpdateTime' ] = pilotsToAccount[pref][ 'StatusDate' ]

      retVal = self.__addPilotsAccountingReport( dbData )
      if not retVal['OK']:
        self.log.error( 'Fail to retrieve Info for pilots', retVal['Message'] )
        return retVal

      self.log.info( "Sending accounting records..." )
      retVal = gDataStoreClient.commit()
      if not retVal[ 'OK' ]:
        self.log.error( "Can't send accounting reports", retVal[ 'Message' ] )
      else:
        self.log.info( "Accounting sent for %s pilots" % len( pilotsToAccount ) )
        accountingSent = True

    if not accountingFlag or accountingSent:
      for pRef in pilotsToAccount:
        pDict = pilotsToAccount[pRef]
        self.log.verbose( 'Setting Status for %s to %s' % ( pRef, pDict['Status'] ) )
        self.pilotDB.setPilotStatus( pRef,
                                     pDict['Status'],
                                     pDict['DestinationSite'],
                                     pDict['StatusDate'],
                                     conn = connection )

    return S_OK()

  #############################################################################
  def getPilotStatus( self, proxy, gridType, pilotRefList ):
    """ Get GRID job status information using the job's owner proxy and
        GRID job IDs. Returns for each JobID its status in the GRID WMS and
        its destination CE as a tuple of 2 elements
    """

    if gridType == 'LCG':
      cmd = [ 'edg-job-status' ]
    elif gridType == 'gLite':
      cmd = [ 'glite-wms-job-status' ]
    else:
      return S_ERROR()
    cmd.extend( pilotRefList )

    start = time.time()
    ret = executeGridCommand( proxy, cmd, self.gridEnv )
    self.log.info( '%s Job Status Execution Time for %d jobs:' %
                   ( gridType, len( pilotRefList ) ), time.time() - start )

    if not ret['OK']:
      self.log.error( 'Failed to execute %s Job Status' % gridType, ret['Message'] )
      return S_ERROR()
    if ret['Value'][0] != 0:
      stderr = ret['Value'][2]
      stdout = ret['Value'][1]
      deleted = 0
      resultDict = {}
      status = 'Deleted'
      destination = 'Unknown'
      deletedJobDict = { 'Status': status,
             'DestinationSite': destination,
             'StatusDate': Time.dateTime(),
             'isChild': False,
             'isParent': False,
             'ParentRef': False,
             'FinalStatus' : status in self.finalStateList,
             'ChildRefs' : [] }
      # Glite returns this error for Deleted jobs to std.err
      for job in List.fromChar( stderr, '\nUnable to retrieve the status for:' )[1:]:
        pRef = List.fromChar( job, '\n' )[0].strip()
        resultDict[pRef] = deletedJobDict
        self.pilotDB.setPilotStatus( pRef, "Deleted" )
        deleted += 1
      # EDG returns a similar error for Deleted jobs to std.out
      for job in List.fromChar( stdout, '\nUnable to retrieve the status for:' )[1:]:
        pRef = List.fromChar( job, '\n' )[0].strip()
        if re.search( "No such file or directory: no matching jobs found", job ):
          resultDict[pRef] = deletedJobDict
          self.pilotDB.setPilotStatus( pRef, "Deleted" )
          deleted += 1
        if re.search( "edg_wll_JobStatus: Connection refused: edg_wll_ssl_connect()", job ):
          # the Broker is not accesible
          return S_ERROR( 'Broker not Available' )
      if not deleted:
        self.log.error( 'Error executing %s Job Status:' %
                        gridType, str( ret['Value'][0] ) + '\n'.join( ret['Value'][1:3] ) )
        return S_ERROR()
      return S_OK( resultDict )

    stdout = ret['Value'][1]
    stderr = ret['Value'][2]
    resultDict = {}
    for job in List.fromChar( stdout, '\nStatus info for the Job :' )[1:]:
      pRef = List.fromChar( job, '\n' )[0].strip()
      resultDict[pRef] = self.__parseJobStatus( job, gridType )

    return S_OK( resultDict )

  def __parseJobStatus( self, job, gridType ):
    """ Parse output of grid pilot status command
    """

    statusRE = 'Current Status:\s*(\w*)'
    destinationRE = 'Destination:\s*([\w\.-]*)'
    statusDateLCGRE = 'reached on:\s*....(.*)'
    submittedDateRE = 'Submitted:\s*....(.*)'
    statusFailedRE = 'Current Status:.*\(Failed\)'

    status = None
    destination = 'Unknown'
    statusDate = None
    submittedDate = None

    try:
      status = re.search( statusRE, job ).group( 1 )
      if status == 'Done' and re.search( statusFailedRE, job ):
        status = 'Failed'
      if re.search( destinationRE, job ):
        destination = re.search( destinationRE, job ).group( 1 )
      if gridType == 'LCG' and re.search( statusDateLCGRE, job ):
        statusDate = re.search( statusDateLCGRE, job ).group( 1 )
        statusDate = time.strftime( '%Y-%m-%d %H:%M:%S', time.strptime( statusDate, '%b %d %H:%M:%S %Y' ) )
      if gridType == 'gLite' and re.search( submittedDateRE, job ):
        submittedDate = re.search( submittedDateRE, job ).group( 1 )
        submittedDate = time.strftime( '%Y-%m-%d %H:%M:%S', time.strptime( submittedDate, '%b %d %H:%M:%S %Y %Z' ) )
    except:
      self.log.exception( 'Error parsing %s Job Status output:\n' % gridType, job )

    isParent = False
    if re.search( 'Nodes information', job ):
      isParent = True
    isChild = False
    if re.search( 'Parent Job', job ):
      isChild = True

    if status == "Running":
      # Pilots can be in Running state for too long, due to bugs in the WMS
      if statusDate:
        statusTime = Time.fromString( statusDate )
        delta = Time.dateTime() - statusTime
        if delta > 4 * Time.day:
          self.log.info( 'Setting pilot status to Deleted after 4 days in Running' )
          status = "Deleted"
          statusDate = statusTime + 4 * Time.day
      elif submittedDate:
        statusTime = Time.fromString( submittedDate )
        delta = Time.dateTime() - statusTime
        if delta > 7 * Time.day:
          self.log.info( 'Setting pilot status to Deleted more than 7 days after submission still in Running' )
          status = "Deleted"
          statusDate = statusTime + 7 * Time.day

    childRefs = []
    childDicts = {}
    if isParent:
      for subjob in List.fromChar( job, ' Status info for the Job :' )[1:]:
        chRef = List.fromChar( subjob, '\n' )[0].strip()
        childDict = self.__parseJobStatus( subjob, gridType )
        childRefs.append( chRef )
        childDicts[chRef] = childDict

    return { 'Status': status,
             'DestinationSite': destination,
             'StatusDate': statusDate,
             'isChild': isChild,
             'isParent': isParent,
             'ParentRef': False,
             'FinalStatus' : status in self.finalStateList,
             'ChildRefs' : childRefs,
             'ChildDicts' : childDicts }

  def __addPilotsAccountingReport( self, pilotsData ):
    """ fill accounting data
    """
    for pRef in pilotsData:
      pData = pilotsData[pRef]
      pA = PilotAccounting()
      pA.setEndTime( pData[ 'LastUpdateTime' ] )
      pA.setStartTime( pData[ 'SubmissionTime' ] )
      retVal = CS.getUsernameForDN( pData[ 'OwnerDN' ] )
      if not retVal[ 'OK' ]:
        userName = '******'
        self.log.error( "Can't determine username for dn:", pData[ 'OwnerDN' ] )
      else:
        userName = retVal[ 'Value' ]
      pA.setValueByKey( 'User', userName )
      pA.setValueByKey( 'UserGroup', pData[ 'OwnerGroup' ] )
      result = getSiteForCE( pData[ 'DestinationSite' ] )
      if result['OK'] and result[ 'Value' ].strip():
        pA.setValueByKey( 'Site', result['Value'].strip() )
      else:
        pA.setValueByKey( 'Site', 'Unknown' )
      pA.setValueByKey( 'GridCE', pData[ 'DestinationSite' ] )
      pA.setValueByKey( 'GridMiddleware', pData[ 'GridType' ] )
      pA.setValueByKey( 'GridResourceBroker', pData[ 'Broker' ] )
      pA.setValueByKey( 'GridStatus', pData[ 'Status' ] )
      if not 'Jobs' in pData:
        pA.setValueByKey( 'Jobs', 0 )
      else:
        pA.setValueByKey( 'Jobs', len( pData['Jobs'] ) )
      self.log.verbose( "Added accounting record for pilot %s" % pData[ 'PilotID' ] )
      retVal = gDataStoreClient.addRegister( pA )
      if not retVal[ 'OK' ]:
        return retVal
    return S_OK()

  def _killPilots( self, acc ):
    for i in sorted(acc.keys()):
      result = self.diracadmin.getPilotInfo( i )
      if result['OK'] and result['Value'].has_key(i) and result['Value'][i].has_key('Status'):
        ret = self.diracadmin.killPilot( str(i) )
        if ret['OK']:
          self.log.info("Successfully deleted: %s (Status : %s)" % (i, result['Value'][i]['Status'] ) )
        else:
          self.log.error("Failed to delete %s : %s"  % ( i, ret['Message']))
      else:
        self.log.error("Failed to get info. of %s : %s" % ( i, str(result)))

  def _checkJobLastUpdateTime( self, joblist , StalledDays ):
    timeLimitToConsider = Time.dateTime() - Time.day * StalledDays 
    ret = False
    for JobID in joblist:
      result = self.jobDB.getJobAttributes(int(JobID))
      if result['OK']:
         if result['Value'].has_key('LastUpdateTime'):
           LastUpdateTime = result['Value']['LastUpdateTime']
           if Time.fromString(LastUpdateTime) > timeLimitToConsider:
             ret = True
             self.log.debug('Since '+str(JobID)+' updates LastUpdateTime on '+str(LastUpdateTime)+', this does not to need to be deleted.')
             break
      else:
        self.log.error("Error taking job info. from DB:%s" % str( result['Message'] ) )
    return ret