Replies: 1 comment
-
the sensor can return a |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Imagine situation where I have assets A and B.
The A is an exposure asset from dbt for example, so it is:
eager
-lyAsset B is:
With all this in mind, I have to somehow split asset B computation in chuncks. The most straight-forward way to do it for me is to add some generic partition key to asset A and Dynamic Partition with sensor to asset B. In theory, I want it work like this: A updates -> Sensor triggers and generates new partitions -> B starts and calculates all new partitions.
However, I have no clue, how to make everything work in that order without A triggering B directly instead of waiting for sensor to update the list of partitions. Any suggestions, please?
Beta Was this translation helpful? Give feedback.
All reactions