Is there a more efficient way to define Paremeters...
# ask-community
t
Is there a more efficient way to define Paremeters/Values than a single assignment per param? They each turn into a Task and I am looking at lowering my Task count and this seems like a prime candidate.
m
If it is lowering your task count for budget reasons, parameter tasks don’t count AFAIK given they run in under 1 second … One alternative to passing parameters would be passing your values through the prefect context object - not sure if the prefect team has other suggestions
k
Hi @Tim Enders! Marwan is right that you won’t be charged for them since they are under one second.
t
ok, thanks! We have some flows that will run on a very short schedule, so I want to reduce the cost as much as I can.