Kyunghwan Choi
08/07/2024, 3:21 PMmeltano 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?Andy Carter
08/07/2024, 3:24 PMschedule 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/#scheduleKyunghwan Choi
08/07/2024, 3:45 PM