You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/reference/model_configuration.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@ Configuration options for SQLMesh model properties. Supported by all model kinds
20
20
|`cron`| The cron expression specifying how often the model should be refreshed. (Default: `@daily`) | str | N |
21
21
|`interval_unit`| The temporal granularity of the model's data intervals. Supported values: `year`, `month`, `day`, `hour`, `half_hour`, `quarter_hour`, `five_minute`. (Default: inferred from `cron`) | str | N |
22
22
|`start`| The date/time that determines the earliest date interval that should be processed by a model. Can be a datetime string, epoch time in milliseconds, or a relative datetime such as `1 year ago`. | str \| int | N |
23
+
|`end`| The date/time that determines the latest date interval that should be processed by a model. Can be a datetime string, epoch time in milliseconds, or a relative datetime such as `1 year ago`. | str \| int | N |
23
24
|`batch_size`| The maximum number of intervals that can be evaluated in a single backfill task. If this is `None`, all intervals will be processed as part of a single task. If this is set, a model's backfill will be chunked such that each individual task only contains jobs with the maximum of `batch_size` intervals. (Default: `None`) | int | N |
24
25
|`grains`| The column(s) whose combination uniquely identifies each row in the model | str \| array[str]| N |
25
26
|`references`| The model column(s) used to join to other models' grains | str \| array[str]| N |
@@ -43,6 +44,7 @@ The SQLMesh project-level `model_defaults` key supports the following options, d
0 commit comments