Frameworks 用于审计平衡和控制软件进程的调度程序框架

Frameworks 用于审计平衡和控制软件进程的调度程序框架,frameworks,controls,audit,scheduler,balance,Frameworks,Controls,Audit,Scheduler,Balance,我正在寻找一个调度器框架,它可以提供以下功能- 1. Audit of the processes - start time, end time and throughput of the process 2. Balance - if necessary schedule jobs according to the load 3. Control - when to run a job? like cron of Unix, helps us to schedule processes at

我正在寻找一个调度器框架,它可以提供以下功能-

1. Audit of the processes - start time, end time and throughput of the process
2. Balance - if necessary schedule jobs according to the load
3. Control - when to run a job? like cron of Unix, helps us to schedule processes at the specified time intervals.
如果我们研究一种数据仓库类型的应用程序,可以说我想监控ETL过程。提取完成后,应开始加载。加载时间不应超过15分钟-如果需要,则记录审核消息等。。
我确信一定有一些已经到位的框架来帮助协调整个软件系统-什么时候运行哪个进程?它们的依赖关系是什么?如果您已经在oracle环境中使用dbms_scheduler,那么如何记录进程的吞吐量等将是答案。它拥有您所要求的所有功能以及更多功能。负载平衡内置于数据库中,由资源管理器处理,并与Oracle调度器完全集成

您可以定义作业以在其运行时间超过预期时生成事件。监视进程可以从调度程序事件Q中选择该事件,并根据需要对其作出反应

有一篇关于这个主题的文章解释了如何从中获得最大的收益

致以最良好的祝愿,