:wave: hi folks….Is there a way to override the r...
# ask-metaflow
s
👋 hi folks….Is there a way to override the resources for a particular step? For example if I have step that I need lots of CPU for, but it’s dependent on my input. And I don’t want to set the CPUs for all the steps. Could I do…..
Copy code
@resources(cpu=os.getenv("CPU", 1))
@step
def expensive_step(self):
    pass
Thank you!
âś… 1