z/OS JCL 中的 DPRTY 是什么?
当我们提交作业时,会依次执行以下步骤。
那么DPRTY的重要性是什么呢?
When we submit a job, the following steps are executed sequentially.
Then what is the importance of DPRTY?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
DPRTY
用于为作业步骤分配调度优先级。 它与类优先级不同,因为类优先级适用于整个作业,而 DPRTY 适用于特定作业步骤。语法:
DPRTY(value1, value2) value1 = 0-15 value2 = 0-15
DPRTY
计算如下DPRTY = (value1*16) + value2
代码>DPRTY
is used to assign dispatching priority to the job step. It is different from the class priority, as class priority applies for the entire job whereasDPRTY
applies to particular job step.Syntax:
DPRTY(value1, value2) value1 = 0-15 value2 = 0-15
DPRTY
is computed asDPRTY = (value1*16) + value2
DPRTY
是一个非常古老的 JCL 关键字,可以追溯到 MVS/ESA 时代。 调度优先级决定了 JES 在作业中应优先考虑各个步骤。在我可以访问的所有 z/OS 版本(所有受支持的版本)上,它没有任何效果。 这是因为 WLM(工作负载管理器)目标模式是 z/OS 1.3 及更高版本中使用的唯一模式。 我相信该关键字在 MVS/ESA V5R1M0 中已被弃用(请参阅 INFO APAR II09592)。
您可以放心地忽略它,因为 JES 本身会忽略它 - 您的所有作业步骤都将在 JCL 作业卡中以自上而下的方式执行,并由
IEAIPSxx
PARMLIB 成员指定调度优先级。DPRTY
is a very old JCL keyword that harks back to the days of MVS/ESA. It was the dispatch priority which dictated to JES what priority individual steps should be given in a job.On all versions of z/OS I have access to (all the supported ones), it has no effect. This is because the WLM (workload manager) goal mode is the only mode used in z/OS 1.3 and beyond. I believe this keyword was deprecated in MVS/ESA V5R1M0 (see INFO APAR II09592).
You can safely ignore it, since JES itself ignores it - all your job steps will be executed in a top-down manner in your JCL job card, with the dispatch priority given by the
IEAIPSxx
PARMLIB member.