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
In `uv run pipeline` worden de 'raw.*'-modellen (uit dlt) nu standaard gerestate; dat zorgt ervoor dat stg/silver-lagen refreshen bij nieuwe runs
Verder enkele kleine quality-issues opgelost (o.a. Docker health-check)
uv run sqlmesh -p sqlmesh plan --auto-apply # Apply SQLMesh transformations
26
27
uv run python scripts/validate_schema.py # Validate silver vs DDL (runs in CI)
27
28
uv run pytest # Run all tests
28
29
```
29
30
31
+
### External Model Restatement
32
+
33
+
By default, `uv run pipeline` includes `--restate-model raw.*` to ensure stg/silver models are refreshed when new data is loaded. This is required because raw tables are external models managed by dlt.
34
+
35
+
-**Default behavior**: All raw.* models are restated, triggering cascading backfill of stg.* and silver.*
36
+
-**Skip restatement**: Use `--no-restate-raw` to only apply model changes without refreshing data
0 commit comments