-
Notifications
You must be signed in to change notification settings - Fork 183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow partials during plan / run #3792
Comments
i think we could add this for run, but can you explain more about your use case? would love to learn more about how your using this and why you need allow partials, this will help us build context to how folks are using sqlmesh |
I face the issue when initialising a project. It does the first load of all data into snapshots (SCD2), then the downstream models read from those with incremental by time range on |
sorry, i'm confused, that's why sqlmesh doesn't allow partials. the incremental by time range shouldn't load any data that isn't complete. |
Yes, but let's say I'm developing a daily incremental model. I won't be able to validate the result until the day after. Which means that I need to first set the model to FULL to see the data and later switch to incremental. |
Sometimes I need to run partial intervals for all models, e.g., during initial plan.
Instead of setting this for all models, I would like to do it as an option.
sqlmesh plan --allow-partials
sqlmesh run --allow-partials
The text was updated successfully, but these errors were encountered: