INFO-统计项目中已调度任务数与节点数

适用模块

任务运维中心旧版

具体说明

任务运维中心旧版统计已调度任务数与任务节点数

使用示例

注:旧版任务运维统计信息在azkaban数据库查询,示例sqlbdms换成实际项目名称
1、已调度任务信息
select exec_id,schedule_timestamp from execution_flows where project_id in (select id from mammut.pf_az_config where account='bdms');
2、已调度节点信息
select job_id from execution_jobs where exec_id in (select exec_id from execution_flows where project_id in (select id from mammut.pf_az_config where account='bdms'));
3、任务重跑时web界面展示会合并,因此web统计结果略少于数据库展示。

作者:林帅