z/OS JCL 中的 DPRTY 是什么?

发布于 2024-07-08 20:29:13 字数 52 浏览 5 评论 0原文

当我们提交作业时,会依次执行以下步骤。

那么DPRTY的重要性是什么呢?

When we submit a job, the following steps are executed sequentially.

Then what is the importance of DPRTY?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

未央 2024-07-15 20:29:14

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 whereas DPRTY applies to particular job step.

Syntax:

DPRTY(value1, value2) value1 = 0-15 value2 = 0-15

DPRTY is computed as

DPRTY = (value1*16) + value2

萌酱 2024-07-15 20:29:13

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文