Skip to content

Commit 465b6d3

Browse files
author
Larry Franks
committed
adding time info to schedule
1 parent 77301f3 commit 465b6d3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/machine-learning/service/reference-pipeline-yaml.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -398,12 +398,12 @@ When defining a **recurring schedule**, use the following keys under `recurrence
398398
| YAML key | Description |
399399
| ----- | ----- |
400400
| `frequency` | How often the schedule recurs. Valid values are `"Minute"`, `"Hour"`, `"Day"`, `"Week"`, or `"Month"`. |
401-
| `inteval` | How often the schedule fires. |
402-
| `start_time` | The start time for the schedule. |
403-
| `time_zone` | The time zone for the start time. |
404-
| `hours` |
405-
| `minutes` |
406-
| `time_of_day` |
401+
| `interval` | How often the schedule fires. The integer value is the number of time units to wait until the schedule fires again. |
402+
| `start_time` | The start time for the schedule. The string format of the value is `YYYY-MM-DDThh:mm:ss`. If no start time is provided, the first workload is run instantly and future workloads are run based on the schedule. If the start time is in the past, the first workload is run at the next calculated run time. |
403+
| `time_zone` | The time zone for the start time. If no time zone is provided, UTC is used. |
404+
| `hours` | If `frequency` is `"Day"` or `"Week"`, specify one or more integers from 0 to 23, separated by commas, as the hours of the day when the pipeline should run. Only `time_of_day` or `hours` and `minutes` can be used. |
405+
| `minutes` | If `frequency` is `"Day"` or `"Week"`, specify one or more integers from 0 to 59, separated by commas, as the minutes of the hour when the pipeline should run. Only `time_of_day` or `hours` and `minutes` can be used. |
406+
| `time_of_day` | If `frequency` is `"Week"`, specify one or more days, separated by commas, when the schedule should run. Valid values are `"Monday"`, `"Tuesday"`, `"Wednesday"`, `"Thursday"`, `"Friday"`, `"Saturday"`, and `"Sunday"`.
407407
| `week_days` |
408408

409409
The following example contains the definition for a recurring schedule:

0 commit comments

Comments
 (0)