Replies: 1 comment 1 reply
-
Hmm, The auto-materialization policy API might not be the best use case for this. Have you thought about doing a daily schedule that kicks off N number of |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Context:
Auto-materialization policy defines the max_materializations_per_minute. Everything above this is skipped and requires a manual actions. The default value is 1. As for me the default is the recommended one.
Case:
I have an asset with dynamic number of partitions being created daily and in order to not to skip the processing of new partitions in the downstream assets I have to set max_materializations_per_minute=1000 (a magnitude bigger than the avg num of new partitions to be on the safe side).
Question:
I doubt that it is a stable solution. What is the recommended way and what are the potential implications of the huge max_materializations_per_minute?
Beta Was this translation helpful? Give feedback.
All reactions