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
## Summary & Motivation
Upgrades ruff to 0.3.0. Main change is ellipses now are formatted on a single line: astral-sh/ruff#5822
## How I Tested These Changes
bk
This example assumes that `asset1` will be materialized in some other way - e.g. manually, via a [sensor](/concepts/partitions-schedules-sensors/sensors), or via a [schedule](/concepts/partitions-schedules-sensors/schedules).
If the last partition of `asset1` is re-materialized, e.g. manually from the UI, then the corresponding partition of `asset2` will be auto-materialized after.
@@ -181,8 +172,7 @@ from dagster import AutoMaterializePolicy, DailyPartitionsDefinition, asset
181
172
max_materializations_per_minute=7
182
173
),
183
174
)
184
-
defasset1():
185
-
...
175
+
defasset1(): ...
186
176
```
187
177
188
178
For time-partitioned assets, the `N` most recent partitions will be selected from the set of candidates to be materialized. For other types of partitioned assets, the selection will be random.
Copy file name to clipboardExpand all lines: docs/content/concepts/ops-jobs-graphs/job-execution.mdx
+1-2
Original file line number
Diff line number
Diff line change
@@ -220,8 +220,7 @@ For example, the following job will execute at most two ops at once with the `da
220
220
}
221
221
}
222
222
)
223
-
deftag_concurrency_job():
224
-
...
223
+
deftag_concurrency_job(): ...
225
224
```
226
225
227
226
**Note:** These limits are only applied on a per-run basis. You can apply op concurrency limits across multiple runs using the <PyObjectmodule="dagster_celery"object="celery_executor" /> or <PyObjectmodule="dagster_celery_k8s"object="celery_k8s_job_executor" />.
Partition keys can be added and removed for a given dynamic partition set. For example, the following code snippet demonstrates the usage of a [sensor](/concepts/partitions-schedules-sensors/sensors) to detect the presence of a new partition and then trigger a run for that partition:
0 commit comments