docs(orchestrator): #160 reviewer-flagged comment polish on _meta-without-inner-object path
This commit is contained in:
parent
91aaeb9194
commit
74c4047567
1 changed files with 8 additions and 6 deletions
|
|
@ -346,13 +346,15 @@ class SyncOrchestrator:
|
||||||
if not _validate_identifier(table_name, "table_name"):
|
if not _validate_identifier(table_name, "table_name"):
|
||||||
continue
|
continue
|
||||||
if table_name not in inner_objects:
|
if table_name not in inner_objects:
|
||||||
# `_meta` row without an inner object — typically a BQ
|
# `_meta` row without an inner object. Post-#160 the
|
||||||
# VIEW entity in the v2 fetch-primitives flow. Skip the
|
# BigQuery extractor no longer emits these for unsupported
|
||||||
# master-view creation (use `da fetch` to materialize),
|
# entity types (it skips both the view AND the _meta row),
|
||||||
# but still process subsequent rows. No claim, no view.
|
# so this branch fires for the keboola use_extension=False
|
||||||
|
# path and any future connector that splits writes across
|
||||||
|
# commits. Skip master-view creation; subsequent rows
|
||||||
|
# continue normally.
|
||||||
logger.info(
|
logger.info(
|
||||||
"Skipping master view for %s.%s — no inner object "
|
"Skipping master view for %s.%s — no inner object",
|
||||||
"(use `da fetch` for BQ views)",
|
|
||||||
source_name, table_name,
|
source_name, table_name,
|
||||||
)
|
)
|
||||||
continue
|
continue
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue