走读中学到的技巧
Posted testzcy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了走读中学到的技巧相关的知识,希望对你有一定的参考价值。
自动发掘dag实例
def process_file(self, filepath): mod_name, file_ext = os.path.splitext(os.path.split(filepath)[-1]) if file_ext != ‘.py‘: return try: logging.info("Importing " + filepath) m = imp.load_source(mod_name, filepath) except : traceback.print_exc() logging.error("Failed to import: " + filepath) else: for dag in m.__dict__.values(): if type(dag) == DAG: if dag.dag_id in self.dags: raise Exception( ‘Two DAGs with the same dag_id. No good.‘) self.dags[dag.dag_id] = dag dag.dagbag = self
以上是关于走读中学到的技巧的主要内容,如果未能解决你的问题,请参考以下文章