Hi team. I’m having trouble consistently creating ...
# dev-metaflow
r
Hi team. I’m having trouble consistently creating notebook cards? It works intermittently but fails most of the time. I initially thought it could be a lack of CPU resources (running on EKS), since it worked locally, but I’ve tried bumping allocated CPU resources without success (memory is fine). What I noticed is when I limit the produced artifacts and reduce the complexity of the notebook, it works. I’m experimenting with Plotly in the Notebook and when it works, it’s excellent. Is this a know limitation, or is there perhaps a timeout / buffer size that I’m exceeding?
1
s
try increasing timeout for starters,
@card(timeout=300)
, for instance
also you can try creating it on the command line with
python myflow.py card create [pathspec] --type=notebook
r
Thanks, @straight-shampoo-11124. I’m going to try those our right away.
try increasing timeout for starters,
@card(timeout=300)
, for instance
That worked 🚀 Thank you. This enables us to produce rich interactive graphs. E.g.
👍 2
s
woah! 😍