File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
metadata-ingestion/src/datahub/ingestion/source/state Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments