Skip to content

Commit ed777cf

Browse files
committed
Update doc
1 parent 65b48dd commit ed777cf

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

metadata-ingestion/src/datahub/ingestion/source/state/stateful_ingestion_base.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ class StatefulLineageConfigMixin(ConfigModel):
101101
default=True,
102102
description="Enable stateful lineage ingestion."
103103
" This will store lineage window timestamps after successful lineage ingestion. "
104-
"and will not run lineage ingestion for same timestamps in subsequent run. ",
104+
"and will not run lineage ingestion for same timestamps in subsequent run. "
105+
"NOTE: This only works with use_queries_v2=False (legacy extraction path). "
106+
"For queries v2, use enable_stateful_time_window instead.",
105107
)
106108

107109
_store_last_lineage_extraction_timestamp = pydantic_renamed_field(
@@ -150,7 +152,9 @@ class StatefulUsageConfigMixin(BaseTimeWindowConfig):
150152
default=True,
151153
description="Enable stateful lineage ingestion."
152154
" This will store usage window timestamps after successful usage ingestion. "
153-
"and will not run usage ingestion for same timestamps in subsequent run. ",
155+
"and will not run usage ingestion for same timestamps in subsequent run. "
156+
"NOTE: This only works with use_queries_v2=False (legacy extraction path). "
157+
"For queries v2, use enable_stateful_time_window instead.",
154158
)
155159

156160
_store_last_usage_extraction_timestamp = pydantic_renamed_field(

0 commit comments

Comments
 (0)