How to disable status on steps: `2023-02-18 20:09:...
# ask-metaflow
l
How to disable status on steps:
2023-02-18 20:09:28.746 1 task is running: fit_model (1 running; 0 done).
2023-02-18 20:09:28.746 No tasks are waiting in the queue.
2023-02-18 20:09:28.746 4 steps have not started: log_model, fit_big, log_big, end.
I want to disable because I'm training a model through a metaflow pipeline and that takes a lot of time to train (so this keeps appearing, almost fills up my terminal) Tried
import os
os.environ['MF_DISABLE_STEPS_WAITING_NOTIFICATIONS'] = 'True'
but doesn't work
1
d
there is currently no option to do this afaik. We could add an option for it if you want (or basically set a longer time between notifications). Feel free to open an issue/pr for it. The goal of the message was to give indication to the user that things were still happening but yes, in some cases, maybe it is too much.
👍 1