Michal Ondras
02/12/2024, 7:45 PMjobs:
- name: hello
tasks: tap-postgres
config:
tap-postgres:
select: 'public-orders.*'
?Reuben (Matatika)
02/12/2024, 7:57 PMconfig
per environment, so you would be able to do something like
meltano --environment job1 run tap-postgres ...
meltano --environment job2 run tap-postgres ...
meltano --environment job3 run tap-postgres ...
Michal Ondras
02/12/2024, 8:07 PMenvironment
is prod, staging, etc. so with that creds with those resources. seems the only way to do what i want is possibly re-write the .env variables under TAP_POSTGRES_SELECT
; ideally i want one yaml with the all the jobs and i could just run
meltano ... run hello
meltano ... run world
rather than creating a separate yaml for each job; unless i'm missing something?Reuben (Matatika)
02/12/2024, 8:18 PMTAP_POSTGRES_SELECT
might be your best bet.