It seems like `meltano schedule` isn't running. I ...
# troubleshooting
k
It seems like
meltano schedule
isn't running. I configured it to run every minute:
meltano schedule add <some name> --extractor tap-something --loader target-somethingelse --interval "* * * * *"
confirmed that it shows up when doing
meltano schedule list
then even ran it once
meltano schedule run <some name>
. But it only runs once then, and it doesn't trigger every minute. I don't see any new logs under
.meltano/logs/elt/<some name>
. Is there a way to check if schedule is running?
1
a
In the docs for
schedule run
it suggests that it just does a one-off run. If you want actual scheduled runs you need an orchestrator to run that. THe info in the meltano schedule is just there for the orcjestrator to pick up when reading the yaml. https://docs.meltano.com/reference/command-line-interface/#schedule
k
thank you. I was able to make it run!