[async] Support microbatching when using ExecutionMode.AIRFLOW_ASYNC
#1270
Labels
area:execution
Related to the execution environment/mode, like Docker, Kubernetes, Local, VirtualEnv, etc
Context
Incremental models in dbt is a materialization strategy designed to efficiently update your data warehouse tables by only transforming and loading new or changed data since the last run. Instead of processing your entire dataset every time, incremental models append or update only the new rows, significantly reducing the time and resources required for your data transformations.
Even with all the benefits of incremental models as they exist today, there are limitations with this approach, such as:
data tests run on your entire model, rather than just the "new" data
dbt-labs/dbt-core#10624
Acceptance criteria
ExecutionMode.AIRFLOW_ASYNC
can leverage dbt microbatching strategiesThe text was updated successfully, but these errors were encountered: