Skip to content

Commit

Permalink
makes full_refresh configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
rudolfix committed Jan 6, 2023
1 parent 642ccb2 commit 00ef005
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dlt/pipeline/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ class PipelineConfiguration(BaseConfiguration):
"""Enables the tracing. Tracing saves the execution trace locally and is required by `dlt deploy`."""
use_single_dataset: bool = True
"""Stores all schemas in single dataset. When False, each schema will get a separate dataset with `{dataset_name}_{schema_name}"""
full_refresh: bool = False
"""When set to True, each instance of the pipeline with the `pipeline_name` starts from scratch when run and loads the data to a separate dataset."""
runtime: RunConfiguration

def on_resolved(self) -> None:
Expand Down

0 comments on commit 00ef005

Please sign in to comment.