johannes_rudolph
04/01/2022, 5:45 PMtaylor
04/01/2022, 5:52 PMmeltano run
. The best solution right now would be to orchestrate the meltano run
command via an external orchestrator.johannes_rudolph
04/01/2022, 6:13 PMmeltano schedule run “$schedule” --state “$local_state_file”
which works great and is tons less complex than running an airflow instance. So yeah, I can orchestrate pretty much anything I want. But now `meltano run`seems not to offer any support for detailing with state files?taylor
04/01/2022, 6:16 PMmeltano schedule
calls meltano elt
and not meltano run
under the hood. We recently added support for meltano run
to execute jobs incrementally, but you can’t currently override the state via the command line. The upcoming meltano state
command https://gitlab.com/meltano/meltano/-/issues/2754 will be the solution for thatnelis_verhoef
12/22/2022, 5:49 AMtaylor
12/22/2022, 3:03 PMmeltano run
under the hoodnelis_verhoef
12/22/2022, 7:47 PMmeltano.yml
? Is there a specific key, e.g mapper
? or do I just pass a list into extractors
? e.g
schedules:
- name: dynamodb-to-wh
interval: '*/50 * * * *'
extractor: [tap-dynamodb, alias-tables]
loader: target-postgres
transform: skip
taylor
12/22/2022, 7:50 PMjob
first with tasks
and then schedule that job directly. The format you just shared used the meltano elt
command under the hood which does not support mappers.