mirror of
https://github.com/datahub-project/datahub.git
synced 2025-09-25 09:00:50 +00:00
fix(ingest/looker): limit dashboard object lifetime to thread (#9564)
This commit is contained in:
parent
8f45d3d0cb
commit
20b7dd3642
@ -1044,7 +1044,7 @@ class LookerDashboardSource(TestableSource, StatefulIngestionSourceBase):
|
||||
self, dashboard_id: str, fields: List[str]
|
||||
) -> Tuple[
|
||||
List[MetadataWorkUnit],
|
||||
Optional[Dashboard],
|
||||
Optional[looker_usage.LookerDashboardForUsage],
|
||||
str,
|
||||
datetime.datetime,
|
||||
datetime.datetime,
|
||||
@ -1095,9 +1095,15 @@ class LookerDashboardSource(TestableSource, StatefulIngestionSourceBase):
|
||||
)
|
||||
workunits.extend(metric_dim_workunits)
|
||||
self.reporter.report_dashboards_scanned()
|
||||
|
||||
# generate usage tracking object
|
||||
dashboard_usage = looker_usage.LookerDashboardForUsage.from_dashboard(
|
||||
dashboard_object
|
||||
)
|
||||
|
||||
return (
|
||||
workunits,
|
||||
dashboard_object,
|
||||
dashboard_usage,
|
||||
dashboard_id,
|
||||
start_time,
|
||||
datetime.datetime.now(),
|
||||
@ -1287,7 +1293,7 @@ class LookerDashboardSource(TestableSource, StatefulIngestionSourceBase):
|
||||
for job in concurrent.futures.as_completed(async_workunits):
|
||||
(
|
||||
work_units,
|
||||
dashboard_object,
|
||||
dashboard_usage,
|
||||
dashboard_id,
|
||||
start_time,
|
||||
end_time,
|
||||
@ -1299,12 +1305,8 @@ class LookerDashboardSource(TestableSource, StatefulIngestionSourceBase):
|
||||
self.reporter.report_upstream_latency(start_time, end_time)
|
||||
|
||||
yield from work_units
|
||||
if dashboard_object is not None:
|
||||
looker_dashboards_for_usage.append(
|
||||
looker_usage.LookerDashboardForUsage.from_dashboard(
|
||||
dashboard_object
|
||||
)
|
||||
)
|
||||
if dashboard_usage is not None:
|
||||
looker_dashboards_for_usage.append(dashboard_usage)
|
||||
|
||||
self.reporter.report_stage_end("dashboard_chart_metadata")
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user