-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new dataflow plan nodes for custom offset windows
- Loading branch information
1 parent
6f6b5bf
commit 54edeb1
Showing
16 changed files
with
455 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
from __future__ import annotations | ||
|
||
from abc import ABC | ||
from dataclasses import dataclass | ||
from typing import Sequence | ||
|
||
from dbt_semantic_interfaces.protocols.metric import MetricTimeWindow | ||
from metricflow_semantics.dag.id_prefix import IdPrefix, StaticIdPrefix | ||
from metricflow_semantics.dag.mf_dag import DisplayedProperty | ||
from metricflow_semantics.specs.time_dimension_spec import TimeDimensionSpec | ||
from metricflow_semantics.visitor import VisitorOutputT | ||
|
||
from metricflow.dataflow.dataflow_plan import DataflowPlanNode | ||
from metricflow.dataflow.dataflow_plan_visitor import DataflowPlanNodeVisitor | ||
|
||
|
||
@dataclass(frozen=True, eq=False) | ||
class OffsetByCustomGranularityNode(DataflowPlanNode, ABC): | ||
"""For a given custom grain, offset its base grain by the requested number of custom grain periods.""" | ||
|
||
offset_window: MetricTimeWindow | ||
required_time_spine_specs: Sequence[TimeDimensionSpec] | ||
time_spine_node: DataflowPlanNode | ||
|
||
def __post_init__(self) -> None: # noqa: D105 | ||
super().__post_init__() | ||
|
||
@staticmethod | ||
def create( # noqa: D102 | ||
time_spine_node: DataflowPlanNode, | ||
offset_window: MetricTimeWindow, | ||
required_time_spine_specs: Sequence[TimeDimensionSpec], | ||
) -> OffsetByCustomGranularityNode: | ||
return OffsetByCustomGranularityNode( | ||
parent_nodes=(time_spine_node,), | ||
time_spine_node=time_spine_node, | ||
offset_window=offset_window, | ||
required_time_spine_specs=required_time_spine_specs, | ||
) | ||
|
||
@classmethod | ||
def id_prefix(cls) -> IdPrefix: # noqa: D102 | ||
return StaticIdPrefix.DATAFLOW_NODE_OFFSET_BY_CUSTOM_GRANULARITY_ID_PREFIX | ||
|
||
def accept(self, visitor: DataflowPlanNodeVisitor[VisitorOutputT]) -> VisitorOutputT: # noqa: D102 | ||
return visitor.visit_offset_by_custom_granularity_node(self) | ||
|
||
@property | ||
def description(self) -> str: # noqa: D102 | ||
return """Offset Base Granularity By Custom Granularity Period(s)""" | ||
|
||
@property | ||
def displayed_properties(self) -> Sequence[DisplayedProperty]: # noqa: D102 | ||
return tuple(super().displayed_properties) + ( | ||
DisplayedProperty("offset_window", self.offset_window), | ||
DisplayedProperty("required_time_spine_specs", self.required_time_spine_specs), | ||
) | ||
|
||
def functionally_identical(self, other_node: DataflowPlanNode) -> bool: # noqa: D102 | ||
return ( | ||
isinstance(other_node, self.__class__) | ||
and other_node.offset_window == self.offset_window | ||
and other_node.required_time_spine_specs == self.required_time_spine_specs | ||
) | ||
|
||
def with_new_parents( # noqa: D102 | ||
self, new_parent_nodes: Sequence[DataflowPlanNode] | ||
) -> OffsetByCustomGranularityNode: | ||
assert len(new_parent_nodes) == 1 | ||
return OffsetByCustomGranularityNode( | ||
parent_nodes=tuple(new_parent_nodes), | ||
time_spine_node=new_parent_nodes[0], | ||
offset_window=self.offset_window, | ||
required_time_spine_specs=self.required_time_spine_specs, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.