Skip to content

Commit

Permalink
Merge pull request #606 from htcondor/HTCONDOR-2501-Fix-POST_ROUTE-docs
Browse files Browse the repository at this point in the history
HTCONDOR-2501: Fixup POST_ROUTE docs
  • Loading branch information
timtheisen committed Jul 16, 2024
2 parents 72e308e + 9da74b1 commit efca5bb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions docs/v23/configuration/job-router-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ in the following order:
1. Each transform in `JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES` whose requirements are met by the job
1. The first transform from `JOB_ROUTER_ROUTE_NAMES` whose requirements are met by the job.
See [the section on route matching](#how-jobs-match-to-routes) below.
1. Each transform in `JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES` whose requirements are met by the job
1. Each transform in `JOB_ROUTER_POST_ROUTE_TRANSFORM_NAMES` whose requirements are met by the job

### Deprecated syntax ###

Expand Down Expand Up @@ -86,7 +86,7 @@ The [ClassAd transform](#classad-transforms) syntax provides many benefits inclu
- Use of simple case statements

Additionally, it is now easier to include job transformations that should be evaluated before or after your routes by
including transforms in the lists of `JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES` and `JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES`,
including transforms in the lists of `JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES` and `JOB_ROUTER_POST_ROUTE_TRANSFORM_NAMES`,
respectively.

### Converting to ClassAd transforms ###
Expand Down Expand Up @@ -132,7 +132,7 @@ whose requirements are satisfied by the job's ClassAd.
Additionally:

- **If you are using the [ClassAd transform syntax](#classad-transforms),** transforms in
`JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES` and `JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES` may also have their own
`JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES` and `JOB_ROUTER_POST_ROUTE_TRANSFORM_NAMES` may also have their own
requirements that determine whether or not that transform is applied.
- **If you are using the [deprecated syntax](#deprecated-syntax),** you may configure the Job Router to evenly
distribute jobs across all matching routes (i.e., round-robin matching).
Expand Down
2 changes: 1 addition & 1 deletion docs/v23/configuration/writing-job-routes.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ The [ClassAd transform](job-router-overview.md#classad-transforms) syntax provid
- Use of simple case statements

Additionally, it is now easier to include job transformations that should be evaluated before or after your routes by
including transforms in the lists of `JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES` and `JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES`,
including transforms in the lists of `JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES` and `JOB_ROUTER_POST_ROUTE_TRANSFORM_NAMES`,
respectively.

For examples of the ClassAd transform syntax, you can inspect default job router transforms packaged with HTCondor-CE
Expand Down
6 changes: 3 additions & 3 deletions docs/v6/configuration/job-router-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ in the following order:
1. Each transform in `JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES` whose requirements are met by the job
1. The first transform from `JOB_ROUTER_ROUTE_NAMES` whose requirements are met by the job.
See [the section on route matching](#how-jobs-match-to-routes) below.
1. Each transform in `JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES` whose requirements are met by the job
1. Each transform in `JOB_ROUTER_POST_ROUTE_TRANSFORM_NAMES` whose requirements are met by the job

### Deprecated syntax ###

Expand Down Expand Up @@ -86,7 +86,7 @@ The [ClassAd transform](#classad-transforms) syntax provides many benefits inclu
- Use of simple case statements

Additionally, it is now easier to include job transformations that should be evaluated before or after your routes by
including transforms in the lists of `JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES` and `JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES`,
including transforms in the lists of `JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES` and `JOB_ROUTER_POST_ROUTE_TRANSFORM_NAMES`,
respectively.

How Jobs Match to Routes
Expand All @@ -103,7 +103,7 @@ whose requirements are satisfied by the job's ClassAd.
Additionally:

- **If you are using the [ClassAd transform syntax](#classad-transforms),** transforms in
`JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES` and `JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES` may also have their own
`JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES` and `JOB_ROUTER_POST_ROUTE_TRANSFORM_NAMES` may also have their own
requirements that determine whether or not that transform is applied.
- **If you are using the [deprecated syntax](#deprecated-syntax),** you may configure the Job Router to evenly
distribute jobs across all matching routes (i.e., round-robin matching).
Expand Down
2 changes: 1 addition & 1 deletion docs/v6/configuration/writing-job-routes.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ The [ClassAd transform](job-router-overview.md#classad-transforms) syntax provid
- Use of simple case statements

Additionally, it is now easier to include job transformations that should be evaluated before or after your routes by
including transforms in the lists of `JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES` and `JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES`,
including transforms in the lists of `JOB_ROUTER_PRE_ROUTE_TRANSFORM_NAMES` and `JOB_ROUTER_POST_ROUTE_TRANSFORM_NAMES`,
respectively.

For examples of the ClassAd transform syntax, you can inspect default job router transforms packaged with HTCondor-CE
Expand Down

0 comments on commit efca5bb

Please sign in to comment.