job_inheritor.py 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #
  2. # Copyright 2019 The FATE Authors. All Rights Reserved.
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. import traceback
  17. from fate_flow.controller.job_controller import JobController
  18. from fate_flow.entity.run_status import JobInheritanceStatus
  19. from fate_flow.operation.job_saver import JobSaver
  20. from fate_flow.utils.log_utils import getLogger
  21. from fate_flow.worker.base_worker import BaseWorker
  22. LOGGER = getLogger()
  23. class JobInherit(BaseWorker):
  24. def _run(self):
  25. job = JobSaver.query_job(job_id=self.args.job_id, role=self.args.role, party_id=self.args.party_id)[0]
  26. try:
  27. JobController.job_reload(job)
  28. except Exception as e:
  29. traceback.print_exc()
  30. JobSaver.update_job(job_info={"job_id": job.f_job_id, "role": job.f_role, "party_id": job.f_party_id,
  31. "inheritance_status": JobInheritanceStatus.FAILED})
  32. LOGGER.exception(e)
  33. if __name__ == '__main__':
  34. JobInherit().run()