This message was deleted.
# ask-anything
s
This message was deleted.
meerkat 1
e
this error happens when ploomber is unable to find the inputs to execute the task you requested. so two things might be happening: either the input files (products from the upstream task) are not there or the files are there but have different names. can you download the docker image locally? that'd be the best way to debug. fetch the image, start an interactive session and try to run:
ploomber task {task-name}
, once you see the same error. see if the upstream products exist
f
but have different names.
what would be the reason for that. I see the files in the S3 bucket so the previous task successfully wrote them. IT does run fine. The 3 parallel child tasks all error with the same message that they cant find the deps. Also they dont mention a specific file but the task as a whole
dependencies are missing: ['data'].
Copy code
- source: scripts/data.py
    name: data
    product:
e
ah, I think i know why! The
{{now}}
placeholder is evaluated when the task starts execution. so it'll get a different value per task. this is an error we have to fix in soopervisor. I think it should evaluate when running
soopervisor export
, store the value so that all tasks return the same value
can you open an issue? this is related to the existing problem we're discussing so we can tackle both at once 🙂