The Scheduler supports types

2024-06-04 17:18
文章标签 scheduler types supports

本文主要是介绍The Scheduler supports types,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

文档地址:http://docs.oracle.com/cd/B19306_01/server.102/b14220/mgmt_db.htm#sthref2285

 
Schedule JobExecution

 

The most basic capability of a job scheduler is to schedule theexecution of a job. The Scheduler supports both time-basedand event-based scheduling.--调度可以支持的类型为:

基于时间和基于事件的调度

 
NO1:Time-basedscheduling

 

Time-based scheduling enables users to specify a fixeddate and time (for example, Jan. 23rd 2006 at 1:00 AM), a repeatingschedule (for example, every Monday), or a defined rule (forexample the last Sunday of every other month or the fourth Thursdayin November which defines Thanksgiving).

Users can create new composite schedules with minimum effort bycombining existing schedules. For example if a HOLIDAY and WEEKDAYschedule were already defined, a WORKDAY schedule can be easilycreated by excluding the HOLIDAY schedule from the WEEKDAYschedule.

Companies often use a fiscal calendar as opposed to a regularcalendar and thus have the requirement to schedule jobs on the lastworkday of their fiscal quarter. The Scheduler supportsuser-defined frequencies which enables users to define not only thelast workday of every month but also the last workday of everyfiscal quarter.

 

NO2:Event-Based Scheduling

 

Event-based scheduling as the name implies triggers jobsbased on real-time events.(--as the nameimplies译为:顾名思义.基于事件的调度顾名思义应用于基于实时事件的触发器作业。) Events aredefined as any state changes or occurrences in the system such asthe arrival of a file. Scheduling based on events enables you tohandle situations where a precise time is not known in advance forwhen you would want a job to execute.

这篇关于The Scheduler supports types的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1030625

相关文章

rtklib.h : RTKLIB constants, types and function prototypes 解释

在 RTKLIB 中,rtklib.h 是一个头文件,包含了与 RTKLIB 相关的常量、类型和函数原型。以下是该头文件的一些常见内容和翻译说明: 1. 常量 (Constants) rtklib.h 中定义的常量通常包括: 系统常量: 例如,GPS、GLONASS、GALILEO 等系统的常量定义。 时间常量: 如一年、一天的秒数等。 精度常量: 如距离、速度的精度标准。 2. 类型

Kubernetes Scheduler:Pod调度的双步骤—预选(Predicates)和优选(Priorities)

Kubernetes Scheduler:Pod调度的双步骤—预选(Predicates)和优选(Priorities) 1、预选(Predicates)2、优选(Priorities) 💖The Begin💖点点关注,收藏不迷路💖 在Kubernetes中,Pod的调度是由Scheduler负责的。Scheduler通过两个关键步骤——预选(Predicat

什么是Kubernetes Scheduler?

什么是Kubernetes Scheduler? 1、什么是Kubernetes Scheduler?2、Scheduler的作用2.1 承上2.2 启下 3、实现原理 💖The Begin💖点点关注,收藏不迷路💖 在Kubernetes中,每个Pod都需要一个“家”——Node来运行。Kubernetes Scheduler就是那位帮助Pod找到理想归宿的“

pyspark.sql.types

示例: from datetime import datetime, datefrom decimal import Decimalfrom pyspark.sql import SparkSessionfrom pyspark.sql.types import StructType, StructField, StringType, IntegerType, FloatType, Arr

日程安排组件DHTMLX Scheduler v7.1 - 支持RFC-5545格式

DHTMLX Scheduler是一个类似于Google日历的JavaScript日程安排控件,日历事件通过Ajax动态加载,支持通过拖放功能调整事件日期和时间,事件可以按天、周、月三个种视图显示。 此版本包括几个备受期待的特性,可以帮助用户增强DHTMLX Scheduler的体验。您可以使用流行的RFC-5545格式在日程安排日历中存储循环事件,同时还扩展了地图视图的功能,从v7.1开始,可

java定时器task:scheduler和quartz

在javaweb项目中,经常用到定时器功能,这里介绍两个我使用过的解决方案,分别是:scheduler 和 quartz。 scheduler: 需要在spring.xml配置文件中添加关于task的配置: <beans xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="

kube-scheduler调度策略之优选算法(四)

一、概述 摘要: 本文我们继续从源码层面分析kube-scheduler调度策略中的优选调度算法,分析优选算法如何对Node节点进行打分的。 二、正文 说明:基于 kubernetes v1.12.0 源码分析 上文我们说的(g *genericScheduler) Schedule()函数调用了PrioritizeNodes()执行优选策略(打分),接下来我们就具体展开分析。 2

kube-scheduler调度策略之预选策略(三)

一、概述 摘要:本文我们继续分析源码,并聚焦在预选策略的调度过程的执行。 二、正文 说明:基于 kubernetes v1.12.0 源码分析 上文我们说的(g *genericScheduler) Schedule()函数调用了findNodesThatFit()执行预选策略。 2.1 findNodesThatFit 先找到改函数对应的源码 // k8s.io/kuber

Spring Boot集成Spring Cloud Scheduler进行任务调度

Spring Boot集成Spring Cloud Scheduler进行任务调度 大家好,我是微赚淘客返利系统3.0的小编,是个冬天不穿秋裤,天冷也要风度的程序猿! 任务调度是后端服务中常见的需求,用于执行定时任务或周期性的工作。Spring Cloud Scheduler提供了对Spring Boot应用的任务调度支持,允许开发者以声明式的方式配置和执行任务。 Spring Cloud

kube-scheduler调度任务的执行过程分析与源码解读(二)

概述 摘要: 上文我们对Kube-scheduler的启动流程进行了分析,本文继续探究kube-scheduler执行pod的调度任务的过程。 正文 说明:基于 kubernetes v1.12.0 源码分析 上文讲到kube-scheduler组件通过sched.Run() 启动调度器实例。在sched.Run() 中循环的执行sched.scheduleOne获取一个pod,并执