Declarative Automation maximum evaluation per tick #24930
-
Hi, how can i set a maximum number of evaluation to do? lets say i would like to have maximum of 50 jobs per automation sensor tick |
Beta Was this translation helpful? Give feedback.
Answered by
garethbrickman
Oct 2, 2024
Replies: 1 comment 2 replies
-
Do you mean you want to limit the number of asset materializations that occur simultaneously when the Automation Condition Sensor evaluates? That should probably be handled with asset-level concurrency. Note that you can set run_tags as a parameter of the AutomationConditionSensor to help with that. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The AutomationConditionSensorDefinition is going to target a set of assets and repeatedly evaluate all the AutomationConditions on all of those assets. So you would either need to change the number of assets being targeted, or change the AutomationConditions. There is no setting at the level of the AutomationConditionSensor for limiting/queuing the materializations themselves.